imio.smartweb.core 1.2.89__py3-none-any.whl → 1.2.90__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/behaviors/configure.zcml +7 -0
- imio/smartweb/core/behaviors/new_tab.py +19 -0
- imio/smartweb/core/browser/faceted/macros.pt +3 -1
- imio/smartweb/core/browser/faceted/views.py +25 -0
- imio/smartweb/core/contents/blocks/link/content.py +0 -4
- imio/smartweb/core/contents/folder/macros.pt +6 -2
- imio/smartweb/core/contents/folder/views.py +14 -0
- imio/smartweb/core/contents/sections/collection/views.py +4 -0
- imio/smartweb/core/contents/sections/common_templates/carousel.pt +1 -1
- imio/smartweb/core/contents/sections/common_templates/table.pt +1 -1
- imio/smartweb/core/contents/sections/links/view.py +3 -1
- imio/smartweb/core/contents/sections/slide/content.py +0 -4
- imio/smartweb/core/contents/sections/views.py +15 -1
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/profiles/default/types/Link.xml +13 -0
- imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml +1 -0
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +1 -0
- imio/smartweb/core/tests/test_sections.py +2 -1
- imio/smartweb/core/upgrades/configure.zcml +44 -0
- imio/smartweb/core/upgrades/profiles/1062_to_1063/registry.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1063_to_1064/types/Link.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.BlockLink.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.SectionSlide.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1063_to_1064/types.xml +4 -0
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/METADATA +8 -1
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/RECORD +32 -25
- /imio.smartweb.core-1.2.89-py3.12-nspkg.pth → /imio.smartweb.core-1.2.90-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/top_level.txt +0 -0
@@ -61,4 +61,11 @@
|
|
61
61
|
factory=".subsite.SubsiteCroppingProvider"
|
62
62
|
/>
|
63
63
|
|
64
|
+
<plone:behavior
|
65
|
+
name="imio.smartweb.new_tab"
|
66
|
+
title="Open in new tab"
|
67
|
+
description="Add a field that explicitly allows specifying whether this content (often a link) should open in a new window or not."
|
68
|
+
provides=".new_tab.INewTab"
|
69
|
+
/>
|
70
|
+
|
64
71
|
</configure>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
from imio.smartweb.locales import SmartwebMessageFactory as _
|
4
|
+
from plone.autoform import directives
|
5
|
+
from plone.autoform.interfaces import IFormFieldProvider
|
6
|
+
from plone.supermodel import model
|
7
|
+
from zope import schema
|
8
|
+
from zope.interface import provider
|
9
|
+
|
10
|
+
|
11
|
+
@provider(IFormFieldProvider)
|
12
|
+
class INewTab(model.Schema):
|
13
|
+
|
14
|
+
directives.order_after(open_in_new_tab="remoteUrl")
|
15
|
+
open_in_new_tab = schema.Bool(
|
16
|
+
title=_("Open in a new tab"),
|
17
|
+
required=False,
|
18
|
+
default=False,
|
19
|
+
)
|
@@ -20,7 +20,9 @@
|
|
20
20
|
</tal:if>
|
21
21
|
|
22
22
|
<tal:if tal:condition="python: not faceted_view.is_video(item)">
|
23
|
-
<a tal:attributes="href item/getURL
|
23
|
+
<a tal:attributes="href item/getURL;
|
24
|
+
target python:faceted_view.target(item);
|
25
|
+
title python:faceted_view.a_tag_item_title(item)">
|
24
26
|
<tal:if tal:condition="show_images">
|
25
27
|
<tal:def tal:define="scale_url python: faceted_view.get_scale_url(item, thumb_scale)">
|
26
28
|
<div class="newsImage card-img-top no-image"
|
@@ -4,8 +4,12 @@ from eea.facetednavigation.browser.app.view import FacetedContainerView
|
|
4
4
|
from eea.facetednavigation.layout.interfaces import IFacetedLayout
|
5
5
|
from imio.smartweb.core.interfaces import IViewWithoutLeadImage
|
6
6
|
from imio.smartweb.core.utils import get_scale_url
|
7
|
+
from imio.smartweb.locales import SmartwebMessageFactory as _
|
8
|
+
from plone import api
|
7
9
|
from plone.app.contenttypes.browser.folder import FolderView
|
10
|
+
from plone.app.contenttypes.interfaces import IFile
|
8
11
|
from zope.component import queryAdapter
|
12
|
+
from zope.i18n import translate
|
9
13
|
from zope.interface import implementer
|
10
14
|
|
11
15
|
|
@@ -29,6 +33,27 @@ class FacetedView(FolderView):
|
|
29
33
|
def is_video(self, item):
|
30
34
|
return item.portal_type == "imio.smartweb.SectionVideo"
|
31
35
|
|
36
|
+
def is_target_blank(self, item):
|
37
|
+
# don't wake up object
|
38
|
+
if item.portal_type == "File":
|
39
|
+
return True
|
40
|
+
# if IFile.providedBy(item.getObject()):
|
41
|
+
# return True
|
42
|
+
return False
|
43
|
+
|
44
|
+
def target(self, item):
|
45
|
+
if self.is_target_blank(item):
|
46
|
+
return "_blank"
|
47
|
+
return ""
|
48
|
+
|
49
|
+
def a_tag_item_title(self, item):
|
50
|
+
title = item.Title or ""
|
51
|
+
if self.is_target_blank(item):
|
52
|
+
current_lang = api.portal.get_current_language()[:2]
|
53
|
+
new_tab_txt = translate(_("New tab"), target_language=current_lang)
|
54
|
+
return f"{title} ({new_tab_txt})"
|
55
|
+
return title
|
56
|
+
|
32
57
|
def get_scale_url(self, item, scale="vignette"):
|
33
58
|
orientation = self.context.orientation
|
34
59
|
if item.portal_type == "imio.smartweb.SectionGallery":
|
@@ -19,10 +19,6 @@ class IBlockLink(ILink):
|
|
19
19
|
|
20
20
|
description = schema.Text(title=_("Description"), required=False)
|
21
21
|
|
22
|
-
open_in_new_tab = schema.Bool(
|
23
|
-
title=_("Open in a new tab"), required=False, default=False
|
24
|
-
)
|
25
|
-
|
26
22
|
remoteUrl = LinkField(title=_("URL"), required=True)
|
27
23
|
|
28
24
|
image = NamedBlobImage(title=_("Image"), required=False)
|
@@ -7,7 +7,9 @@
|
|
7
7
|
|
8
8
|
<metal:macro define-macro="block">
|
9
9
|
|
10
|
-
<a tal:attributes="href item/getURL
|
10
|
+
<a tal:attributes="href item/getURL;
|
11
|
+
title python:view.a_tag_item_title(item);
|
12
|
+
target python:'_blank' if view.open_in_new_tab(item) else '';">
|
11
13
|
<tal:if tal:condition="view/show_images">
|
12
14
|
<div tal:condition="python: not item.has_leadimage or not thumb_scale"
|
13
15
|
class="newsImage card-img-top no-image" />
|
@@ -28,7 +30,9 @@
|
|
28
30
|
|
29
31
|
<metal:macro define-macro="summary">
|
30
32
|
|
31
|
-
<a class="row" tal:attributes="href item/getURL
|
33
|
+
<a class="row" tal:attributes="href item/getURL;
|
34
|
+
title python:view.a_tag_item_title(item);
|
35
|
+
target python:'_blank' if view.open_in_new_tab(item) else '';">
|
32
36
|
<tal:if tal:condition="view/show_images">
|
33
37
|
<tal:img tal:condition="python: item.has_leadimage and thumb_scale">
|
34
38
|
<div class="newsImage card-img-left col-md-2"
|
@@ -20,6 +20,7 @@ from z3c.form.form import EditForm
|
|
20
20
|
from z3c.form.interfaces import IFieldsAndContentProvidersForm
|
21
21
|
from zope.component import queryMultiAdapter
|
22
22
|
from zope.contentprovider.provider import ContentProviderBase
|
23
|
+
from zope.i18n import translate
|
23
24
|
from zope.interface import implementer
|
24
25
|
|
25
26
|
|
@@ -87,6 +88,19 @@ class FolderView(BaseFolderView):
|
|
87
88
|
orientation = self.context.orientation
|
88
89
|
return get_scale_url(item, request, "image", scale, orientation)
|
89
90
|
|
91
|
+
def open_in_new_tab(self, item):
|
92
|
+
if hasattr(item, "open_in_new_tab"):
|
93
|
+
return item.open_in_new_tab
|
94
|
+
return False
|
95
|
+
|
96
|
+
def a_tag_item_title(self, item):
|
97
|
+
title = item.title or ""
|
98
|
+
if self.open_in_new_tab(item):
|
99
|
+
current_lang = api.portal.get_current_language()[:2]
|
100
|
+
new_tab_txt = translate(_("New tab"), target_language=current_lang)
|
101
|
+
return f"{title} ({new_tab_txt})"
|
102
|
+
return title
|
103
|
+
|
90
104
|
|
91
105
|
@implementer(IViewWithoutLeadImage)
|
92
106
|
class FolderViewWithImages(FolderView):
|
@@ -17,6 +17,9 @@ class CollectionView(CarouselOrTableSectionView):
|
|
17
17
|
)
|
18
18
|
results = []
|
19
19
|
for item in items:
|
20
|
+
open_in_new_tab = False
|
21
|
+
if item.portal_type == "File":
|
22
|
+
open_in_new_tab = True
|
20
23
|
url = item.getURL()
|
21
24
|
scale_url = get_scale_url(
|
22
25
|
item, self.request, "image", image_scale, orientation
|
@@ -27,6 +30,7 @@ class CollectionView(CarouselOrTableSectionView):
|
|
27
30
|
"effective": item.effective,
|
28
31
|
"url": url,
|
29
32
|
"has_image": item.has_leadimage,
|
33
|
+
"open_in_new_tab": open_in_new_tab,
|
30
34
|
}
|
31
35
|
if scale_url == "":
|
32
36
|
dict_item["bad_scale"] = image_scale
|
@@ -45,7 +45,7 @@
|
|
45
45
|
<tal:def define="item_has_image item/has_image;
|
46
46
|
show_lead_image python: getattr(context, 'show_items_lead_image', True);
|
47
47
|
portal context/@@plone_portal_state/portal;
|
48
|
-
open_in_new_tab item
|
48
|
+
open_in_new_tab python:view.open_in_new_tab(item);">
|
49
49
|
<a tal:omit-tag="not: item/url"
|
50
50
|
tal:attributes="href item/url;
|
51
51
|
class item/container_id | nothing;
|
@@ -55,7 +55,7 @@
|
|
55
55
|
smartweb_icons python:context.restrictedTraverse('@@smartwebiconresolver');
|
56
56
|
show_lead_image python:getattr(context, 'show_items_lead_image', True);
|
57
57
|
portal context/@@plone_portal_state/portal;
|
58
|
-
open_in_new_tab item
|
58
|
+
open_in_new_tab python:view.open_in_new_tab(item);"
|
59
59
|
tal:attributes="class string:table_display ${item/container_id | nothing} ${item/smartweb_type | nothing};"
|
60
60
|
>
|
61
61
|
<a tal:attributes="class python:'table_image no-image' if no_icon_no_image else 'table_image';
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
|
3
|
+
from imio.smartweb.core.behaviors.new_tab import INewTab
|
3
4
|
from imio.smartweb.core.contents.sections.views import CarouselOrTableSectionView
|
4
5
|
from imio.smartweb.core.utils import batch_results
|
5
6
|
from imio.smartweb.core.utils import get_scale_url
|
@@ -30,6 +31,7 @@ class LinksView(CarouselOrTableSectionView):
|
|
30
31
|
scale_url = get_scale_url(
|
31
32
|
item, self.request, "image", image_scale, orientation
|
32
33
|
)
|
34
|
+
|
33
35
|
results.append(
|
34
36
|
{
|
35
37
|
"title": item.title,
|
@@ -39,7 +41,7 @@ class LinksView(CarouselOrTableSectionView):
|
|
39
41
|
"has_icon": has_icon,
|
40
42
|
"image": scale_url,
|
41
43
|
"has_image": has_image,
|
42
|
-
"open_in_new_tab": item.open_in_new_tab,
|
44
|
+
"open_in_new_tab": INewTab(item).open_in_new_tab,
|
43
45
|
}
|
44
46
|
)
|
45
47
|
return batch_results(results, self.context.nb_results_by_batch)
|
@@ -62,10 +62,6 @@ class ISectionSlide(ISection):
|
|
62
62
|
|
63
63
|
remoteUrl = LinkField(title=_("Link URL"), required=False)
|
64
64
|
|
65
|
-
open_in_new_tab = schema.Bool(
|
66
|
-
title=_("Open in a new tab"), required=False, default=False
|
67
|
-
)
|
68
|
-
|
69
65
|
|
70
66
|
@implementer(ISectionSlide)
|
71
67
|
class SectionSlide(Section):
|
@@ -108,8 +108,22 @@ class SectionView(BrowserView):
|
|
108
108
|
)
|
109
109
|
return json.dumps({"id": section_size, "title": size_txt})
|
110
110
|
|
111
|
+
def open_in_new_tab(self, item):
|
112
|
+
open_in_new_tab = (
|
113
|
+
item.get("open_in_new_tab")
|
114
|
+
if isinstance(item, dict)
|
115
|
+
else getattr(item, "open_in_new_tab", False)
|
116
|
+
)
|
117
|
+
return open_in_new_tab
|
118
|
+
|
111
119
|
def a_tag_item_title(self, item):
|
112
|
-
title =
|
120
|
+
title = (
|
121
|
+
item.get("title") if isinstance(item, dict) else getattr(item, "Title", "")
|
122
|
+
)
|
123
|
+
if self.open_in_new_tab(item):
|
124
|
+
current_lang = api.portal.get_current_language()[:2]
|
125
|
+
new_tab_txt = translate(_("New tab"), target_language=current_lang)
|
126
|
+
return f"{title} ({new_tab_txt})"
|
113
127
|
return title
|
114
128
|
|
115
129
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
meta_type="Dexterity FTI"
|
4
|
+
name="Link"
|
5
|
+
i18n:domain="plone"
|
6
|
+
>
|
7
|
+
|
8
|
+
<!-- Enabled behaviors -->
|
9
|
+
<property name="behaviors" purge="false">
|
10
|
+
<element value="imio.smartweb.new_tab" />
|
11
|
+
</property>
|
12
|
+
|
13
|
+
</object>
|
@@ -4,6 +4,7 @@ from AccessControl.unauthorized import Unauthorized
|
|
4
4
|
from bs4 import BeautifulSoup
|
5
5
|
from collective.geolocationbehavior.geolocation import IGeolocatable
|
6
6
|
from functools import reduce
|
7
|
+
from imio.smartweb.core.behaviors.new_tab import INewTab
|
7
8
|
from imio.smartweb.core.interfaces import IImioSmartwebCoreLayer
|
8
9
|
from imio.smartweb.core.testing import IMIO_SMARTWEB_CORE_INTEGRATION_TESTING
|
9
10
|
from imio.smartweb.core.testing import ImioSmartwebTestCase
|
@@ -551,7 +552,7 @@ class TestSections(ImioSmartwebTestCase):
|
|
551
552
|
'<a class="table_image" title="My link" href="http://nohost/plone/page/section-links/my-link" target="">',
|
552
553
|
view(),
|
553
554
|
)
|
554
|
-
link.open_in_new_tab = True
|
555
|
+
INewTab(link).open_in_new_tab = True
|
555
556
|
self.assertNotIn(
|
556
557
|
'<a class="table_image" href="http://nohost/plone/page/section-links/my-link" target="_blank">',
|
557
558
|
view(),
|
@@ -275,6 +275,22 @@
|
|
275
275
|
provides="Products.GenericSetup.interfaces.EXTENSION"
|
276
276
|
/>
|
277
277
|
|
278
|
+
<genericsetup:registerProfile
|
279
|
+
name="upgrade_1062_to_1063"
|
280
|
+
title="Upgrade core from 1062 to 1063"
|
281
|
+
directory="profiles/1062_to_1063"
|
282
|
+
description="Rollback from upgrade step 1027 to 1028. The agent must always be explicit for its content to open in a new window"
|
283
|
+
provides="Products.GenericSetup.interfaces.EXTENSION"
|
284
|
+
/>
|
285
|
+
|
286
|
+
<genericsetup:registerProfile
|
287
|
+
name="upgrade_1063_to_1064"
|
288
|
+
title="Upgrade core from 1063 to 1064"
|
289
|
+
directory="profiles/1063_to_1064"
|
290
|
+
description="Add new behavior (open in new tab) to content type Link and content type imio.smartweb.BlockLink"
|
291
|
+
provides="Products.GenericSetup.interfaces.EXTENSION"
|
292
|
+
/>
|
293
|
+
|
278
294
|
<genericsetup:upgradeStep
|
279
295
|
title="Configure first official release"
|
280
296
|
description="Run needed profiles steps and reindex catalog"
|
@@ -909,5 +925,33 @@
|
|
909
925
|
/>
|
910
926
|
</genericsetup:upgradeSteps>
|
911
927
|
|
928
|
+
<genericsetup:upgradeSteps
|
929
|
+
source="1062"
|
930
|
+
destination="1063"
|
931
|
+
profile="imio.smartweb.core:default">
|
932
|
+
<genericsetup:upgradeDepends
|
933
|
+
title="Rollback from upgrade step 1027 to 1028. The agent must always be explicit for its content to open in a new window"
|
934
|
+
import_profile="imio.smartweb.core.upgrades:upgrade_1062_to_1063"
|
935
|
+
/>
|
936
|
+
</genericsetup:upgradeSteps>
|
937
|
+
|
938
|
+
<genericsetup:upgradeSteps
|
939
|
+
source="1063"
|
940
|
+
destination="1064"
|
941
|
+
profile="imio.smartweb.core:default">
|
942
|
+
<genericsetup:upgradeDepends
|
943
|
+
title="Add new behavior (open in new tab) to content type Link and content type imio.smartweb.BlockLink"
|
944
|
+
import_profile="imio.smartweb.core.upgrades:upgrade_1063_to_1064"
|
945
|
+
/>
|
946
|
+
</genericsetup:upgradeSteps>
|
947
|
+
|
948
|
+
<!--genericsetup:upgradeStep
|
949
|
+
title="Check contact itinerary if address was checked in visible blocks"
|
950
|
+
description=""
|
951
|
+
source="1064"
|
952
|
+
destination="1065"
|
953
|
+
handler=".upgrades.migrate_external_links"
|
954
|
+
profile="imio.smartweb.core:default"
|
955
|
+
/-->
|
912
956
|
|
913
957
|
</configure>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<registry
|
3
|
+
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
4
|
+
i18n:domain="imio.smartweb">
|
5
|
+
|
6
|
+
<records interface="Products.CMFPlone.interfaces.controlpanel.ILinkSchema"
|
7
|
+
prefix="plone">
|
8
|
+
<value key="external_links_open_new_window">False</value>
|
9
|
+
</records>
|
10
|
+
|
11
|
+
</registry>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="Link"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="plone">
|
6
|
+
|
7
|
+
<property name="behaviors" purge="false">
|
8
|
+
<element value="imio.smartweb.new_tab" />
|
9
|
+
</property>
|
10
|
+
|
11
|
+
</object>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="imio.smartweb.BlockLink"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<property name="behaviors" purge="false">
|
8
|
+
<element value="imio.smartweb.new_tab" />
|
9
|
+
</property>
|
10
|
+
|
11
|
+
</object>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="imio.smartweb.SectionSlide"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<property name="behaviors" purge="false">
|
8
|
+
<element value="imio.smartweb.new_tab" />
|
9
|
+
</property>
|
10
|
+
|
11
|
+
</object>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.90
|
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,13 @@ Changelog
|
|
203
203
|
=========
|
204
204
|
|
205
205
|
|
206
|
+
1.2.90 (2025-02-24)
|
207
|
+
-------------------
|
208
|
+
|
209
|
+
- WEB-4217 : Refactor / Improved target blank links (files, links and so on)
|
210
|
+
[boulch]
|
211
|
+
|
212
|
+
|
206
213
|
1.2.89 (2025-02-18)
|
207
214
|
-------------------
|
208
215
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.90-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=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
|
@@ -17,9 +17,10 @@ imio/smartweb/core/vocabularies.py,sha256=6DykA6VR4Q2qn-13dKHN5Hbne9DtPV8pTPpqRL
|
|
17
17
|
imio/smartweb/core/vocabularies.zcml,sha256=KSH7JWlAJtKawLvfmsztZzE_AK1JR6B5udY6tleY2cQ,5904
|
18
18
|
imio/smartweb/core/behaviors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
imio/smartweb/core/behaviors/categorization.py,sha256=a5i8pYagdTcEG43A1NLs4SGF42PCAUFn8IRUq1pFqpM,828
|
20
|
-
imio/smartweb/core/behaviors/configure.zcml,sha256=
|
20
|
+
imio/smartweb/core/behaviors/configure.zcml,sha256=2jQIrHfv4_8M5wZPKYVvd_v-9Yh_K-_7qGfos4BZm3g,2174
|
21
21
|
imio/smartweb/core/behaviors/listing.py,sha256=x1L58k4RpS5yB7-f36fEC6xwyg7Ci8LR-5wDh5wVD2c,760
|
22
22
|
imio/smartweb/core/behaviors/minisite.py,sha256=sDo74qYt8vWJjrfr2JQSTDXocUVwehGIKAc9nWlj-Fw,1865
|
23
|
+
imio/smartweb/core/behaviors/new_tab.py,sha256=uwOXpI8rTOA-DhVBjd29U3ktvhh0yk2mpIWJQHo0u38,521
|
23
24
|
imio/smartweb/core/behaviors/orientation.py,sha256=WrW9BeT9KICl4qmkGzplLepJ5J_rMkosgDvOFn534QA,557
|
24
25
|
imio/smartweb/core/behaviors/quickaccess.py,sha256=j18T39KcbiJErpidMM8wH6i4XjEIZyTQ1kER4_FfhhE,1063
|
25
26
|
imio/smartweb/core/behaviors/subsite.py,sha256=O2aJHl3Jj9WTpGBmNJaoia-PAtb7aSHpCRanvO1JE8k,1707
|
@@ -43,11 +44,11 @@ imio/smartweb/core/browser/dashboards/plausible.py,sha256=LAJo3_-wNiRuEhNbFLDGr2
|
|
43
44
|
imio/smartweb/core/browser/faceted/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
45
|
imio/smartweb/core/browser/faceted/block_view.pt,sha256=gyVm3a_gH2IA0nkXcSRrDY0M-3AoxwI0OvBv4HhWllE,1983
|
45
46
|
imio/smartweb/core/browser/faceted/configure.zcml,sha256=JFOMhQLPWgsbfYWbO_-EGkG8u5GLT-s_DgGAH_cFHd8,3289
|
46
|
-
imio/smartweb/core/browser/faceted/macros.pt,sha256=
|
47
|
+
imio/smartweb/core/browser/faceted/macros.pt,sha256=KtGERmOIQ7t7bi6dZVhUvcrpLi7HzKbLoOnYv8nbhxQ,3087
|
47
48
|
imio/smartweb/core/browser/faceted/map.pt,sha256=rimXOnJ82hAcDL78lc5z9mZFFkfP7R9wHUnNycOSG2E,4434
|
48
49
|
imio/smartweb/core/browser/faceted/map.py,sha256=74Rhz7cD_uuQq4YfHdInAn3cv4DKQ9sc8jDCQ3odVQg,1504
|
49
50
|
imio/smartweb/core/browser/faceted/summary_view.pt,sha256=cHuFW1s88tINcCqaEKMhLGB8b6IX9L35rBWQ_YGA0aQ,1927
|
50
|
-
imio/smartweb/core/browser/faceted/views.py,sha256=
|
51
|
+
imio/smartweb/core/browser/faceted/views.py,sha256=mT7VSgtUCF4MEJHd2tGnSJE46YROPVUSvBdrdOGjSMk,2293
|
51
52
|
imio/smartweb/core/browser/faceted/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
53
|
imio/smartweb/core/browser/faceted/widgets/configure.zcml,sha256=azfsDnDUrYBRkozk-G__GlNq87cl61kxOuMOSyBd5-k,449
|
53
54
|
imio/smartweb/core/browser/faceted/widgets/select.pt,sha256=snf4vNin1d7dYy4NVdyDNxX_WPlYmNkslAecy4OVFhQ,2459
|
@@ -165,7 +166,7 @@ imio/smartweb/core/contents/blocks/configure.zcml,sha256=qmn7Hq9TekwvEYvS3PzUtIN
|
|
165
166
|
imio/smartweb/core/contents/blocks/subscriber.py,sha256=YL8mLJBwLvRvhPprbVlSXrNnWK2elZQtbYroWAcCjVg,330
|
166
167
|
imio/smartweb/core/contents/blocks/link/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
168
|
imio/smartweb/core/contents/blocks/link/configure.zcml,sha256=l2J6oCBNJQ0L63aoZqZ1e7O26N78dMXTIYaJbieBUbw,552
|
168
|
-
imio/smartweb/core/contents/blocks/link/content.py,sha256=
|
169
|
+
imio/smartweb/core/contents/blocks/link/content.py,sha256=YoRUq7tT2tW66ZEXZMLOw6dOIIlYkWPqbp6oYRYO_A8,1297
|
169
170
|
imio/smartweb/core/contents/blocks/link/fields.py,sha256=4A8Xs5YPYtjm3tTmmD9CX4gBMvBAnxXlwb-wpH_vROg,479
|
170
171
|
imio/smartweb/core/contents/blocks/link/icons_input.pt,sha256=oDVGYr5oXMi5Vc_ToKxKQqPg9IaYbcqqdNsjNm99nW8,703
|
171
172
|
imio/smartweb/core/contents/folder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -173,9 +174,9 @@ imio/smartweb/core/contents/folder/block_view.pt,sha256=VLmXZ3VnffgK0hoRhEkAPXml
|
|
173
174
|
imio/smartweb/core/contents/folder/configure.zcml,sha256=ZBWZWLxJBOfu-eZgasCL2gRQcOuYxlE23VqzTwnBzvQ,2961
|
174
175
|
imio/smartweb/core/contents/folder/content.py,sha256=3KgS1PFUKnsyWiT8PD0yMgqY5u-978uUhWK0flHgaoQ,3377
|
175
176
|
imio/smartweb/core/contents/folder/element_view.pt,sha256=dD6O9Racd_UxSXJ9XRMujFEnxfewb4Utlf-Tk_RT4_o,342
|
176
|
-
imio/smartweb/core/contents/folder/macros.pt,sha256=
|
177
|
+
imio/smartweb/core/contents/folder/macros.pt,sha256=4Og1eqWPGH-b9iDF9-HIoU5dcJBPQyraGSC-w1IKvL4,2061
|
177
178
|
imio/smartweb/core/contents/folder/summary_view.pt,sha256=ZymRV39P5qmT3riJJXDc4eTI3Mio1Ua_CliNrEk9kJw,1168
|
178
|
-
imio/smartweb/core/contents/folder/views.py,sha256=
|
179
|
+
imio/smartweb/core/contents/folder/views.py,sha256=im7QUdZ3wx3otCrlgr8W13YXuh0Co8UB_11rm8qPopI,6181
|
179
180
|
imio/smartweb/core/contents/pages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
181
|
imio/smartweb/core/contents/pages/configure.zcml,sha256=e-EqjBgF17vs51DWV2iBKZeMBlfPue9nBryzpEUPY0E,2297
|
181
182
|
imio/smartweb/core/contents/pages/pages.py,sha256=iCQwzbp4nnGqwy31UE5Q9MaeJVAzJUgto-f7kWc8I7Q,464
|
@@ -241,13 +242,13 @@ imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn
|
|
241
242
|
imio/smartweb/core/contents/sections/configure.zcml,sha256=bHrKkHEehguoE_5tacKybAI0TKnJ68zf6TEi_mcQJfs,3429
|
242
243
|
imio/smartweb/core/contents/sections/macros.pt,sha256=7viDONQ050hC4sUynjtNKbvDCGLA3hKcitnq9Lv75OI,5920
|
243
244
|
imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
|
244
|
-
imio/smartweb/core/contents/sections/views.py,sha256=
|
245
|
+
imio/smartweb/core/contents/sections/views.py,sha256=f0AX2rVoE0CsRqC9wz1j23Ya67CclqwULRcbMty3Z8M,6926
|
245
246
|
imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
246
247
|
imio/smartweb/core/contents/sections/collection/configure.zcml,sha256=Ak4UbKFjogWZad6-5_y6oSx8tWXt3nN7bEdKXG7pQCI,920
|
247
248
|
imio/smartweb/core/contents/sections/collection/content.py,sha256=DMmU9rIaRlbRjIaot5RHXu59vJmAbun0FCmyahWhBCM,2379
|
248
|
-
imio/smartweb/core/contents/sections/collection/views.py,sha256=
|
249
|
-
imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=
|
250
|
-
imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=
|
249
|
+
imio/smartweb/core/contents/sections/collection/views.py,sha256=89O9dnb_N19hCynFjEFtLNiZt8m3uduig3g6sOp-xyY,1640
|
250
|
+
imio/smartweb/core/contents/sections/common_templates/carousel.pt,sha256=zKT5AK03Im5N6lkIU-NXjcR313dDwJO56THMsaix1to,5777
|
251
|
+
imio/smartweb/core/contents/sections/common_templates/table.pt,sha256=seDTTi8OwxSIhLUI4YiMXOIjmYAUbIr1PlOo4rEvy2Y,7561
|
251
252
|
imio/smartweb/core/contents/sections/contact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
252
253
|
imio/smartweb/core/contents/sections/contact/configure.zcml,sha256=WjyGXO7alNf4yDW5dZCS_xQ_AYbQVQuRVRIeoyLIBzY,1591
|
253
254
|
imio/smartweb/core/contents/sections/contact/content.py,sha256=MdhY6QPMdCseThddjwZ0e7xzkx1-p21MBuwqEic1f90,2690
|
@@ -286,7 +287,7 @@ imio/smartweb/core/contents/sections/html/view.pt,sha256=PY_z5Mn52IygWoMxAIEkbep
|
|
286
287
|
imio/smartweb/core/contents/sections/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
287
288
|
imio/smartweb/core/contents/sections/links/configure.zcml,sha256=rE-UWiubwkPYU6VvfxM1AH3UTr06WfsItEG1dSX9G8w,918
|
288
289
|
imio/smartweb/core/contents/sections/links/content.py,sha256=drUefjzRnT3wFxIjVZ31qqaR-BGhWN5ffmcmnEeI5tQ,1051
|
289
|
-
imio/smartweb/core/contents/sections/links/view.py,sha256=
|
290
|
+
imio/smartweb/core/contents/sections/links/view.py,sha256=OqUetU9sWNu_NBk6uZ46PPkXgDp5RddWPtX9gUoKZz8,2163
|
290
291
|
imio/smartweb/core/contents/sections/map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
291
292
|
imio/smartweb/core/contents/sections/map/configure.zcml,sha256=8ocTq-RfXM7BvGHyHrhySzYAvKhwXrc5lyrABNSb2H0,412
|
292
293
|
imio/smartweb/core/contents/sections/map/content.py,sha256=z5maHOFl0BpzFHRgEVrae7TnW9qU-aRXj_m9Z3CWtd0,372
|
@@ -311,7 +312,7 @@ imio/smartweb/core/contents/sections/sendinblue/view.pt,sha256=2FRxjjDepvkvSx6Cx
|
|
311
312
|
imio/smartweb/core/contents/sections/sendinblue/views.py,sha256=ZEUKI1ZZF5cf2Mf9CET_DZ_diuRzcg-fZxXmmn5ctkE,1731
|
312
313
|
imio/smartweb/core/contents/sections/slide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
313
314
|
imio/smartweb/core/contents/sections/slide/configure.zcml,sha256=PgcVLUTEBT0MjT6GKaCmB_Bbv97PVHp0Rit1ma9MB8I,417
|
314
|
-
imio/smartweb/core/contents/sections/slide/content.py,sha256=
|
315
|
+
imio/smartweb/core/contents/sections/slide/content.py,sha256=8ynsrflv68ps8F-ibYnTBH2quMg_t9KMniwv5OvxE2Q,2071
|
315
316
|
imio/smartweb/core/contents/sections/slide/view.pt,sha256=pSf1zreuL96Kieyiwo-kLrASB2gHmIGPm5PmUgPEw2c,2440
|
316
317
|
imio/smartweb/core/contents/sections/slide/view.py,sha256=fK_HQRyANhZ__rsmwGuXI5APLzPLlyJmnDNHpRyTO2c,784
|
317
318
|
imio/smartweb/core/contents/sections/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -339,7 +340,7 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
|
|
339
340
|
imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
|
340
341
|
imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
|
341
342
|
imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
|
342
|
-
imio/smartweb/core/profiles/default/metadata.xml,sha256=
|
343
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=t0JLUwSutonePWZJ0XS2mggHQAtnNom2w7nyQhvuYxA,1218
|
343
344
|
imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
|
344
345
|
imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
|
345
346
|
imio/smartweb/core/profiles/default/types.xml,sha256=k4V9-IxygB_2YPHWjQ7y_Upl443ksxfC_MC9mz9o3Yc,2111
|
@@ -355,7 +356,8 @@ imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml,sha256=okH
|
|
355
356
|
imio/smartweb/core/profiles/default/types/Collection.xml,sha256=xE7IOs7Em-lnmDnR1YK9Q8wW_VGIT-3eq0LZLhfArY8,321
|
356
357
|
imio/smartweb/core/profiles/default/types/File.xml,sha256=oTmg9PpsD9-oLk2E5OXn0BOwoQ3z3FrWOHFDNXXH0mo,315
|
357
358
|
imio/smartweb/core/profiles/default/types/Image.xml,sha256=fJmD5pnkIG_FPoM4HCAr-cnB-__pzR6YJgTlYk-eSFQ,316
|
358
|
-
imio/smartweb/core/profiles/default/types/
|
359
|
+
imio/smartweb/core/profiles/default/types/Link.xml,sha256=SNA_wi7oQ3FyIgCpT2zwESzhWOgHNTffY1r7hpVBbIg,325
|
360
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.BlockLink.xml,sha256=JA-_W0PZP34hMfwWgRQIWYdpQM-ORhNhGJ6sXskH-xw,1572
|
359
361
|
imio/smartweb/core/profiles/default/types/imio.smartweb.CirkwiView.xml,sha256=no9uRz1RgpIIWIslYX5CZ3zXh26R3EWVZRgcEc4h1vE,1507
|
360
362
|
imio/smartweb/core/profiles/default/types/imio.smartweb.DirectoryView.xml,sha256=6QHlBk3fdynpJRvsI4IXxQhoEtzrwzTSyxfvwn9ZMJk,1593
|
361
363
|
imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml,sha256=7dgM9eTj_oFUvbclAL0hAEpSiX6JB14Zz6JNcaaoURQ,1632
|
@@ -380,7 +382,7 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml,sha256=D
|
|
380
382
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml,sha256=IOGPNTzu3zmEx4khYpluI7cVmBDpmu4uy7piSDRucF0,1129
|
381
383
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sha256=7qlJZjMKQW-9QAS99NgN0MAH_lUvmjcjpD7ni1Cy9kg,1506
|
382
384
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=p0EQnnc9B28iMocTrKBdr_zzmDECQWcjDrJKH_hFYs4,1142
|
383
|
-
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=
|
385
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=JV0bfJDBTuD4x0zAG8p1cSMvTi-gp1TerX_tD6cnDH8,1173
|
384
386
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml,sha256=1rU_Z0h-ghzt_wcCvLlt2A5HsuZ5Ey_OvHaFRJwHB3E,1241
|
385
387
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=gShZ1Ozg7asts4OUJwKh-pTG0WFkQEazCoeoKY86Y3o,1316
|
386
388
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=SizWFzAer6gHpUKaNfGcKZe246eVLnFcra50fff2qAc,1167
|
@@ -436,7 +438,7 @@ imio/smartweb/core/tests/test_section_external_content.py,sha256=OW89j-ZGHT1wSAu
|
|
436
438
|
imio/smartweb/core/tests/test_section_gallery.py,sha256=osXo6wT96JOxA_FBvK93s-Z9R-ndOabiSeSbCZzpTmI,2614
|
437
439
|
imio/smartweb/core/tests/test_section_news.py,sha256=6S7-r6ZnpeN_JdLYLZMWbHKRzeuf5ynPWnox2DDFPZk,9126
|
438
440
|
imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
|
439
|
-
imio/smartweb/core/tests/test_sections.py,sha256=
|
441
|
+
imio/smartweb/core/tests/test_sections.py,sha256=zc54ia3MUfQNhvUbWHMFi12rm4yWnFBgVQDrVLJgMWE,25315
|
440
442
|
imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
|
441
443
|
imio/smartweb/core/tests/test_sitemap.py,sha256=AhFvUhzpkUg5XAwVcK3obXXrOEJYwhQZC3XrWeZtnP0,6674
|
442
444
|
imio/smartweb/core/tests/test_social.py,sha256=GVHkF4c8Ygnm09J1aGxhklbtd6b-1Fy8M7NnYmjRvfI,3046
|
@@ -486,7 +488,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
486
488
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
487
489
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
488
490
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
489
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256=
|
491
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=juj4_tpNwr_zMJi3ANkNK-xZAM3-BVo67nez8G9u-Ms,32517
|
490
492
|
imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
|
491
493
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
492
494
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
@@ -621,6 +623,11 @@ imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.Page.xml,s
|
|
621
623
|
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.PortalPage.xml,sha256=N0nbLh52uUc7uzDEImsmigFdU0O6XMh_tjozjHyV1jI,323
|
622
624
|
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionFiles.xml,sha256=mHnNszcRlhohtz2GiA5b9sIws1Tj7JL_TDXEX2lFqGI,290
|
623
625
|
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=4XBwOL0WkRW3WL9lnkDVdqcC64ki2ydUxUaVdb_7T7o,1444
|
626
|
+
imio/smartweb/core/upgrades/profiles/1062_to_1063/registry.xml,sha256=ooVHJarZn3b-iBl7Umo8Gu0v5pw8G87X5_ssmeVRx8c,318
|
627
|
+
imio/smartweb/core/upgrades/profiles/1063_to_1064/types.xml,sha256=T3cECNFyCve4LevcNJkgZUESronzbdoKMzvkNRLdUBE,197
|
628
|
+
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/Link.xml,sha256=19TjIa4m2ddfRUvB9un5ZRFBHrMa3Wq9gXID1mWPxq4,287
|
629
|
+
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.BlockLink.xml,sha256=1r5sydZbHyom_VIrH_gT34FwwPUMyk87x2g3FAjNltE,293
|
630
|
+
imio/smartweb/core/upgrades/profiles/1063_to_1064/types/imio.smartweb.SectionSlide.xml,sha256=kViKVS5u-x54Au1ShmOs4gUCd0a2UOwyAv_JgThzdVQ,296
|
624
631
|
imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
625
632
|
imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
|
626
633
|
imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
|
@@ -769,10 +776,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aY
|
|
769
776
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
|
770
777
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
|
771
778
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
772
|
-
imio.smartweb.core-1.2.
|
773
|
-
imio.smartweb.core-1.2.
|
774
|
-
imio.smartweb.core-1.2.
|
775
|
-
imio.smartweb.core-1.2.
|
776
|
-
imio.smartweb.core-1.2.
|
777
|
-
imio.smartweb.core-1.2.
|
778
|
-
imio.smartweb.core-1.2.
|
779
|
+
imio.smartweb.core-1.2.90.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
780
|
+
imio.smartweb.core-1.2.90.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
781
|
+
imio.smartweb.core-1.2.90.dist-info/METADATA,sha256=2cAANOnHCM08KmqZ18MZzbP7KlOCmJDkFwcSvPN7XNs,61239
|
782
|
+
imio.smartweb.core-1.2.90.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
783
|
+
imio.smartweb.core-1.2.90.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
784
|
+
imio.smartweb.core-1.2.90.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
785
|
+
imio.smartweb.core-1.2.90.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.2.89.dist-info → imio.smartweb.core-1.2.90.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|