imio.smartweb.core 1.2.6__py3-none-any.whl → 1.2.10__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/static/smartweb-edit-compiled.js +1 -1
- imio/smartweb/core/browser/static/src/edit.js +27 -0
- imio/smartweb/core/configure.zcml +1 -0
- imio/smartweb/core/contents/sections/files/view.py +3 -1
- imio/smartweb/core/contents/sections/gallery/view.pt +1 -1
- imio/smartweb/core/contents/sections/gallery/views.py +2 -2
- imio/smartweb/core/contents/sections/text/views.py +1 -1
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/rest/__init__.py +0 -0
- imio/smartweb/core/rest/authentic_sources.py +62 -0
- imio/smartweb/core/rest/configure.zcml +30 -0
- imio/smartweb/core/tests/test_text.py +10 -10
- imio/smartweb/core/upgrades/configure.zcml +8 -0
- imio/smartweb/core/upgrades/upgrades.py +17 -0
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/METADATA +32 -1
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/RECORD +22 -19
- /imio.smartweb.core-1.2.6-py3.10-nspkg.pth → /imio.smartweb.core-1.2.10-py3.10-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
(()=>{"use strict";jQuery(document).ready((function(e){e("#contentview-preview a").click((function(
|
1
|
+
(()=>{"use strict";jQuery(document).ready((function(e){e("#contentview-preview a").click((function(o){e(".hide-in-preview, #section-byline, #global_statusmessage").toggle("fast"),o.preventDefault()})),e("#formfield-form-widgets-svg_icon input").click((function(o){var s=e(this);e(this).attr("checked")?(e(this).prop("checked",!1),e(this).removeAttr("checked"),e(this).css("box-shadow","none"),e(this).css("border-color","#DEE2ED")):e("#formfield-form-widgets-svg_icon input").each((function(o,t){s[0]===t?(e(this).prop("checked",!0),e(this).attr("checked","checked"),e(this).css("border-color","#007a99"),e(this).css("box-shadow","0 0 0 0.25rem rgb(0 122 153 / 25%)")):(e(this).prop("checked",!1),e(this).removeAttr("checked"),e(this).css("box-shadow","none"),e(this).css("border-color","#DEE2ED"))}))}))})),jQuery(window).on("load",(function(e){var o=$("#plone-authentic-sources-menu").wrap("<ul class='plonetoolbar-authentic-sources-menu'>").parent();$(".personaltools-wrapper").prepend(o);var s=$("#plone-smartweb-help-menu").wrap("<ul class='plonetoolbar-smartweb-help-menu'>").parent();$(".personaltools-wrapper").prepend(s)}))})();
|
@@ -5,6 +5,33 @@ jQuery(document).ready(function ($) {
|
|
5
5
|
$(".hide-in-preview, #section-byline, #global_statusmessage").toggle("fast");
|
6
6
|
e.preventDefault();
|
7
7
|
});
|
8
|
+
|
9
|
+
// Uncheck checked icon
|
10
|
+
$("#formfield-form-widgets-svg_icon input").click(function(e){
|
11
|
+
var $elm_clicked = $(this);
|
12
|
+
if ($(this).attr('checked')) {
|
13
|
+
$(this).prop("checked", false );
|
14
|
+
$(this).removeAttr("checked");
|
15
|
+
$(this).css("box-shadow", "none");
|
16
|
+
$(this).css("border-color", "#DEE2ED");
|
17
|
+
}
|
18
|
+
else {
|
19
|
+
$("#formfield-form-widgets-svg_icon input").each(function(index, elm) {
|
20
|
+
if ($elm_clicked[0] === elm) {
|
21
|
+
$(this).prop("checked", true );
|
22
|
+
$(this).attr("checked", "checked");
|
23
|
+
$(this).css("border-color", "#007a99");
|
24
|
+
$(this).css("box-shadow", "0 0 0 0.25rem rgb(0 122 153 / 25%)");
|
25
|
+
}
|
26
|
+
else {
|
27
|
+
$(this).prop("checked", false );
|
28
|
+
$(this).removeAttr("checked");
|
29
|
+
$(this).css("box-shadow", "none");
|
30
|
+
$(this).css("border-color", "#DEE2ED");
|
31
|
+
}
|
32
|
+
})
|
33
|
+
}
|
34
|
+
});
|
8
35
|
});
|
9
36
|
|
10
37
|
jQuery(window).on("load", function(e) {
|
@@ -17,7 +17,9 @@ class FilesView(CarouselOrTableSectionView):
|
|
17
17
|
url = item.absolute_url()
|
18
18
|
has_image = True if getattr(item.aq_base, "image", None) else False
|
19
19
|
file_view = queryMultiAdapter((item, self.request), name="file_view")
|
20
|
-
scale_url = get_scale_url(
|
20
|
+
scale_url = get_scale_url(
|
21
|
+
item, self.request, "image", image_scale, orientation="paysage"
|
22
|
+
)
|
21
23
|
results.append(
|
22
24
|
{
|
23
25
|
"title": item.title,
|
@@ -34,7 +34,7 @@
|
|
34
34
|
class="flexbin flexbin-margin">
|
35
35
|
<tal:images tal:repeat="item items">
|
36
36
|
<a class="spotlight section_gallery_item"
|
37
|
-
tal:attributes="href python:view.get_scale_url(item, '');
|
37
|
+
tal:attributes="href python:view.get_scale_url(item, '', '');
|
38
38
|
title item/title;
|
39
39
|
data-description item/description">
|
40
40
|
<img tal:attributes="src python:view.get_scale_url(item, thumb_scale);
|
@@ -8,6 +8,6 @@ from imio.smartweb.core.contents.sections.views import SectionView
|
|
8
8
|
class GalleryView(SectionView, PhotoGallery):
|
9
9
|
"""Gallery Section view"""
|
10
10
|
|
11
|
-
def get_scale_url(self, item, scale):
|
11
|
+
def get_scale_url(self, item, scale, orientation="paysage"):
|
12
12
|
request = self.request
|
13
|
-
return get_scale_url(item, request, "image", scale)
|
13
|
+
return get_scale_url(item, request, "image", scale, orientation)
|
File without changes
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
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
|
+
from Products.Five.browser import BrowserView
|
7
|
+
from zope.interface import implementer
|
8
|
+
from zope.publisher.interfaces import IPublishTraverse
|
9
|
+
|
10
|
+
import requests
|
11
|
+
|
12
|
+
|
13
|
+
class BaseRequestForwarder(BrowserView):
|
14
|
+
def __call__(self):
|
15
|
+
traversal_stack = getattr(self, "traversal_stack", [])
|
16
|
+
url = "/".join(traversal_stack)
|
17
|
+
auth_source_url = f"{self.base_url}/{url}"
|
18
|
+
return self.forward_request(auth_source_url)
|
19
|
+
|
20
|
+
@implementer(IPublishTraverse)
|
21
|
+
def publishTraverse(self, request, name):
|
22
|
+
if not hasattr(self, "traversal_stack"):
|
23
|
+
self.traversal_stack = []
|
24
|
+
self.traversal_stack.append(name)
|
25
|
+
return self
|
26
|
+
|
27
|
+
def browserDefault(self, request):
|
28
|
+
return self, ()
|
29
|
+
|
30
|
+
def forward_request(self, url):
|
31
|
+
method = self.request.method
|
32
|
+
headers = {"Accept": self.request.environ["HTTP_ACCEPT"]}
|
33
|
+
params = self.request.form
|
34
|
+
|
35
|
+
data = {}
|
36
|
+
if self.request.get("BODY") is not None:
|
37
|
+
data = self.request.get("BODY")
|
38
|
+
|
39
|
+
# Forward the request to the authentic source
|
40
|
+
auth_source_response = requests.request(
|
41
|
+
method, url, params=params, headers=headers, data=data
|
42
|
+
)
|
43
|
+
|
44
|
+
response = self.request.response
|
45
|
+
# Set the status code and headers from the authentic source server response
|
46
|
+
response.setStatus(auth_source_response.status_code)
|
47
|
+
for header, value in auth_source_response.headers.items():
|
48
|
+
response.setHeader(header, value)
|
49
|
+
|
50
|
+
return auth_source_response.text
|
51
|
+
|
52
|
+
|
53
|
+
class DirectoryRequestForwarder(BaseRequestForwarder):
|
54
|
+
base_url = DIRECTORY_URL
|
55
|
+
|
56
|
+
|
57
|
+
class EventsRequestForwarder(BaseRequestForwarder):
|
58
|
+
base_url = EVENTS_URL
|
59
|
+
|
60
|
+
|
61
|
+
class NewsRequestForwarder(BaseRequestForwarder):
|
62
|
+
base_url = NEWS_URL
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<configure
|
2
|
+
xmlns="http://namespaces.zope.org/zope"
|
3
|
+
xmlns:browser="http://namespaces.zope.org/browser"
|
4
|
+
xmlns:plone="http://namespaces.plone.org/plone">
|
5
|
+
|
6
|
+
<browser:page
|
7
|
+
for="Products.CMFPlone.interfaces.IPloneSiteRoot"
|
8
|
+
name="directory_request_forwarder"
|
9
|
+
class=".authentic_sources.DirectoryRequestForwarder"
|
10
|
+
permission="zope.Public"
|
11
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
12
|
+
/>
|
13
|
+
|
14
|
+
<browser:page
|
15
|
+
for="Products.CMFPlone.interfaces.IPloneSiteRoot"
|
16
|
+
name="events_request_forwarder"
|
17
|
+
class=".authentic_sources.EventsRequestForwarder"
|
18
|
+
permission="zope.Public"
|
19
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
20
|
+
/>
|
21
|
+
|
22
|
+
<browser:page
|
23
|
+
for="Products.CMFPlone.interfaces.IPloneSiteRoot"
|
24
|
+
name="news_request_forwarder"
|
25
|
+
class=".authentic_sources.NewsRequestForwarder"
|
26
|
+
permission="zope.Public"
|
27
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
28
|
+
/>
|
29
|
+
|
30
|
+
</configure>
|
@@ -82,34 +82,34 @@ class TestText(ImioSmartwebTestCase):
|
|
82
82
|
title="Title of my text",
|
83
83
|
)
|
84
84
|
section.alignment = "left"
|
85
|
-
section.image_size = "
|
85
|
+
section.image_size = "affiche"
|
86
86
|
view = getMultiAdapter((self.page, self.request), name="full_view")
|
87
87
|
self.assertIn(
|
88
|
-
'<div class="body-section figure-left figure-
|
88
|
+
'<div class="body-section figure-left figure-affiche no-image"', view()
|
89
89
|
)
|
90
90
|
self.assertNotIn("<figure", view())
|
91
|
-
self.assertNotIn("@@images/image/
|
91
|
+
self.assertNotIn("@@images/image/affiche", view())
|
92
92
|
self.assertNotIn("figcaption", view())
|
93
93
|
|
94
94
|
section.image = NamedBlobImage(**make_named_image())
|
95
95
|
view = getMultiAdapter((self.page, self.request), name="full_view")
|
96
|
-
self.assertIn('<div class="body-section figure-left figure-
|
96
|
+
self.assertIn('<div class="body-section figure-left figure-affiche "', view())
|
97
97
|
self.assertIn("<figure", view())
|
98
|
-
self.assertIn("@@images/image-
|
98
|
+
self.assertIn("@@images/image-750-", view())
|
99
99
|
self.assertNotIn("figcaption", view())
|
100
100
|
|
101
101
|
section.image_caption = "Kamoulox"
|
102
102
|
view = getMultiAdapter((self.page, self.request), name="full_view")
|
103
103
|
# Assert section text has lead image
|
104
|
-
self.assertIn('<div class="body-section figure-left figure-
|
104
|
+
self.assertIn('<div class="body-section figure-left figure-affiche "', view())
|
105
105
|
self.assertIn("<figure", view())
|
106
106
|
self.assertIn("figcaption", view())
|
107
107
|
|
108
108
|
section.alignment = "right"
|
109
109
|
view = getMultiAdapter((self.page, self.request), name="full_view")
|
110
|
-
self.assertIn('<div class="body-section figure-right figure-
|
110
|
+
self.assertIn('<div class="body-section figure-right figure-affiche "', view())
|
111
111
|
|
112
|
-
section.image_size = "
|
112
|
+
section.image_size = "vignette"
|
113
113
|
view = getMultiAdapter((self.page, self.request), name="full_view")
|
114
|
-
self.assertIn('<div class="body-section figure-right figure-
|
115
|
-
self.assertIn("@@images/image-
|
114
|
+
self.assertIn('<div class="body-section figure-right figure-vignette "', view())
|
115
|
+
self.assertIn("@@images/image-430-", view())
|
@@ -703,4 +703,12 @@
|
|
703
703
|
profile="imio.smartweb.core:default"
|
704
704
|
/>
|
705
705
|
|
706
|
+
<genericsetup:upgradeStep
|
707
|
+
title="Migrate deprecated image sizes from Section Text"
|
708
|
+
source="1050"
|
709
|
+
destination="1051"
|
710
|
+
handler=".upgrades.migrate_old_sizes_from_section_text"
|
711
|
+
profile="imio.smartweb.core:default"
|
712
|
+
/>
|
713
|
+
|
706
714
|
</configure>
|
@@ -210,3 +210,20 @@ def migrate_old_scales_from_vocabulary(context):
|
|
210
210
|
logger.info(
|
211
211
|
f"Migrated deprecated scale from {old_scale} to {new_scale} for {obj.absolute_url()}"
|
212
212
|
)
|
213
|
+
|
214
|
+
|
215
|
+
def migrate_old_sizes_from_section_text(context):
|
216
|
+
with api.env.adopt_user(username="admin"):
|
217
|
+
brains = api.content.find(portal_type=["imio.smartweb.SectionText"])
|
218
|
+
for brain in brains:
|
219
|
+
obj = brain.getObject()
|
220
|
+
old_scale = obj.image_size
|
221
|
+
if old_scale in ["affiche", "vignette"]:
|
222
|
+
continue
|
223
|
+
new_scale = "affiche"
|
224
|
+
if old_scale == "preview":
|
225
|
+
new_scale = "vignette"
|
226
|
+
obj.image_size = new_scale
|
227
|
+
logger.info(
|
228
|
+
f"Migrated deprecated scale from {old_scale} to {new_scale} for {obj.absolute_url()}"
|
229
|
+
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.10
|
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,37 @@ Changelog
|
|
189
189
|
=========
|
190
190
|
|
191
191
|
|
192
|
+
1.2.10 (2023-11-28)
|
193
|
+
-------------------
|
194
|
+
|
195
|
+
- Add RequestForwarder views
|
196
|
+
[laulaz, boulch]
|
197
|
+
|
198
|
+
|
199
|
+
1.2.9 (2023-11-24)
|
200
|
+
------------------
|
201
|
+
|
202
|
+
- WEB-4021 : Fix lead image displaying with files section
|
203
|
+
[boulch]
|
204
|
+
|
205
|
+
|
206
|
+
1.2.8 (2023-11-23)
|
207
|
+
------------------
|
208
|
+
|
209
|
+
- Fix (lead) image sizes URLs for text section & migrate old values
|
210
|
+
[boulch, laulaz]
|
211
|
+
|
212
|
+
|
213
|
+
1.2.7 (2023-11-22)
|
214
|
+
------------------
|
215
|
+
|
216
|
+
- Fix image scales URLs for gallery view thumbnails
|
217
|
+
[laulaz]
|
218
|
+
|
219
|
+
- WEB-3992 : Uncheck icon when clincking on checked icon (in edit form of imio.smartweb.BlockLink)
|
220
|
+
[boulch]
|
221
|
+
|
222
|
+
|
192
223
|
1.2.6 (2023-11-21)
|
193
224
|
------------------
|
194
225
|
|
@@ -1,7 +1,7 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.10-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
|
-
imio/smartweb/core/configure.zcml,sha256=
|
4
|
+
imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
|
5
5
|
imio/smartweb/core/indexers.py,sha256=Lv1lHWFzM71ju822N8y7w61GDOyi6qmUbveZNI1tCz4,3887
|
6
6
|
imio/smartweb/core/indexers.zcml,sha256=XHvKTkNcF5mkX-dVwRbjNsrBwIwwqa2Cm81PoXBqtow,968
|
7
7
|
imio/smartweb/core/interfaces.py,sha256=8FxcXLjS915SZSL41JGsAWFDQNBAtSTsLnGiPmboU3g,971
|
@@ -72,7 +72,7 @@ imio/smartweb/core/browser/static/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
72
72
|
imio/smartweb/core/browser/static/Makefile,sha256=M6dYqYEKwHzwyCn3d8RWpbwVJmfLSr2D0Zvqyl7fqFM,350
|
73
73
|
imio/smartweb/core/browser/static/package.json,sha256=rJeZEnDqQvcPTakkRPOZCALk8HBKA-3BOb4Kjwi12vs,695
|
74
74
|
imio/smartweb/core/browser/static/smartweb-edit-compiled.css,sha256=2MJ1HREUQxeXJdG_dlctPKcEgV1om7VSpAVZ7X_zL3w,863
|
75
|
-
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=
|
75
|
+
imio/smartweb/core/browser/static/smartweb-edit-compiled.js,sha256=2tYCLeUwKG40VSVYYMc-tZPnEbzc4A7Ba3E32P2enSk,1137
|
76
76
|
imio/smartweb/core/browser/static/smartweb-swiperconfig-compiled.js,sha256=N2b-d5pLMqI66U5ORf0E8UvjJqcnYpfe8QmHjf46Qzs,608
|
77
77
|
imio/smartweb/core/browser/static/smartweb-view-compiled.css,sha256=rcpadTevQ4zYZak9WIERRGRJNm0jWG9HJy-ReycSdLs,2702
|
78
78
|
imio/smartweb/core/browser/static/smartweb-view-compiled.js,sha256=T4e-c-rP2TRm7XtuFfM6V5f4PyU80V-37Mw2YL1Y2k0,2060
|
@@ -129,7 +129,7 @@ imio/smartweb/core/browser/static/icons/reseausocial-youtube.svg,sha256=yu6wRkDn
|
|
129
129
|
imio/smartweb/core/browser/static/icons/vue-actualites.svg,sha256=AV03gmKj7dG2FEODgiVkbqA2aWFhLp5G12AGH58V3uc,350
|
130
130
|
imio/smartweb/core/browser/static/icons/vue-agenda.svg,sha256=3oWoG6U3MvFuWES1pf943JI-89OUsI-94SDFAHp9UGM,339
|
131
131
|
imio/smartweb/core/browser/static/icons/vue-annuaire.svg,sha256=MwuysY7mS6r8IIYwo99GyG5LwtPLFw6CxrhiYyImnOI,497
|
132
|
-
imio/smartweb/core/browser/static/src/edit.js,sha256=
|
132
|
+
imio/smartweb/core/browser/static/src/edit.js,sha256=7zWxkm7dhuKO8J9QEYqjAxsM5tTw2rox1MNLdmZStxc,1783
|
133
133
|
imio/smartweb/core/browser/static/src/edit.less,sha256=ls4apgCMkJaagk8ePsOl6HmQpOVaPdCBaGMkdocZn2o,1089
|
134
134
|
imio/smartweb/core/browser/static/src/swiper-config.js,sha256=PK5Uw_vbHcXiyt3R8Gvdq2geNX6LEdQB2QTWTcKSqWg,1285
|
135
135
|
imio/smartweb/core/browser/static/src/view.js,sha256=xgNT2ggBCeeiWeA8IEL7jRHhqBXywCNVP9nKae4sF68,2980
|
@@ -246,12 +246,12 @@ imio/smartweb/core/contents/sections/external_content/views.py,sha256=yeVUEifvoB
|
|
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=60wt1VguNqKBu3fyuuG2dcrHC-9FjxTf96af2IqU3fw,871
|
249
|
-
imio/smartweb/core/contents/sections/files/view.py,sha256=
|
249
|
+
imio/smartweb/core/contents/sections/files/view.py,sha256=0KnXIWEadsqYV2U0XhMd2a5-Mon4VZy4RyAWNwUBVUc,1249
|
250
250
|
imio/smartweb/core/contents/sections/gallery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
251
|
imio/smartweb/core/contents/sections/gallery/configure.zcml,sha256=0fq5_PWU9vFrmPkExvFPBCzZrDSnlN8B0K7fHQReAvA,424
|
252
252
|
imio/smartweb/core/contents/sections/gallery/content.py,sha256=l6HLGVNi70gcEP-zz9OXi2WYtyd-V6LCAZH44a2Td_s,780
|
253
|
-
imio/smartweb/core/contents/sections/gallery/view.pt,sha256=
|
254
|
-
imio/smartweb/core/contents/sections/gallery/views.py,sha256=
|
253
|
+
imio/smartweb/core/contents/sections/gallery/view.pt,sha256=3GLYQdPukj3bj07b5tTTQr98e8JYk5NjixihR4BZ8Eo,2058
|
254
|
+
imio/smartweb/core/contents/sections/gallery/views.py,sha256=pQRD2jq1fR4pEhStrbys2xdJHVW6C2sdrqvCHzMvHCE,451
|
255
255
|
imio/smartweb/core/contents/sections/html/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
256
|
imio/smartweb/core/contents/sections/html/configure.zcml,sha256=KsYNQY72doYTDf8Oa-5j147pOJYXqLPPBF7AtvMxDck,413
|
257
257
|
imio/smartweb/core/contents/sections/html/content.py,sha256=6O1fD-6mEo_QEsuOJN80kPTsX0lLXBsqyIk0PBcjn2E,1352
|
@@ -292,7 +292,7 @@ imio/smartweb/core/contents/sections/text/configure.zcml,sha256=FzMgOeiLv33RhOe3
|
|
292
292
|
imio/smartweb/core/contents/sections/text/content.py,sha256=XCOaPWD3iKe0QF1dIK1e2CZmMF5aK8Et5Wt4GyEAgio,1118
|
293
293
|
imio/smartweb/core/contents/sections/text/forms.py,sha256=BHPxF-LbODbVoVTq6b-Mx1zM-thRhqu3kSY1tOrTDvw,1818
|
294
294
|
imio/smartweb/core/contents/sections/text/view.pt,sha256=M6bQzhDgR65TA9drSMY3TUulrvQqv0cNy4IMR8QSzdo,1576
|
295
|
-
imio/smartweb/core/contents/sections/text/views.py,sha256=
|
295
|
+
imio/smartweb/core/contents/sections/text/views.py,sha256=SstSPiKk7GCQYeYngrRikR9sKAl7decqPBoe4kcW064,383
|
296
296
|
imio/smartweb/core/contents/sections/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
297
|
imio/smartweb/core/contents/sections/video/configure.zcml,sha256=fB2sr0jyVajOXCIuQuDVzAGm-KV5yRpxFvEyrLm3CEE,418
|
298
298
|
imio/smartweb/core/contents/sections/video/content.py,sha256=zWba02hLpdbzvbXoRDw4wgnABZ5w6iwmEb6Jd_-rpEU,978
|
@@ -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=
|
310
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=SThKvlZsC7eN4zzxldEVz9D-pGEaduQcR__7qZnOO78,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
|
@@ -357,6 +357,9 @@ imio/smartweb/core/profiles/testing/types/Collection.xml,sha256=C-sMSIWDq53bNJEF
|
|
357
357
|
imio/smartweb/core/profiles/testing/types/Document.xml,sha256=rsGEqMCL6GdRoNaUaUvUowjR4k-Awwsd1Kpe3ztPV0w,215
|
358
358
|
imio/smartweb/core/profiles/testing/types/Folder.xml,sha256=VegC_axHcmGWUvCSTxID12lErLwKSURpL2h3CTbEae4,213
|
359
359
|
imio/smartweb/core/profiles/uninstall/browserlayer.xml,sha256=K8KnZFW9E6Hwi61Z6XZlXOjUpAKzJR6HjmjoOjFEWrk,128
|
360
|
+
imio/smartweb/core/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
361
|
+
imio/smartweb/core/rest/authentic_sources.py,sha256=SXn6Wl0qhI8IMDVoZAu9ietbl1D8UU5d4wPqh0Bjg-0,1951
|
362
|
+
imio/smartweb/core/rest/configure.zcml,sha256=GwILcIEU-qjO-8bq7hSorcYLmTKwB_bb7czOjNgfxFA,1001
|
360
363
|
imio/smartweb/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
361
364
|
imio/smartweb/core/tests/test_banner.py,sha256=83Q86ezLMJVwCLxoJddmlE9GKR3h6Qyb-rbqVSFc8a0,7838
|
362
365
|
imio/smartweb/core/tests/test_behaviors.py,sha256=-CGdTPsWC6p7_SEwmQF_6IugNb5g_-7cQ-3rmN4WKl0,5950
|
@@ -392,7 +395,7 @@ imio/smartweb/core/tests/test_sections.py,sha256=K8xv5vLCqCEm5zJQZPa42UN7PFemLv7
|
|
392
395
|
imio/smartweb/core/tests/test_setup.py,sha256=JcbMnXTNCuB_8grFh5E1kZ0uALdATlKMbahAdGfToZI,2092
|
393
396
|
imio/smartweb/core/tests/test_social.py,sha256=GVHkF4c8Ygnm09J1aGxhklbtd6b-1Fy8M7NnYmjRvfI,3046
|
394
397
|
imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR6Wac3GXfnbE,9016
|
395
|
-
imio/smartweb/core/tests/test_text.py,sha256=
|
398
|
+
imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
|
396
399
|
imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
|
397
400
|
imio/smartweb/core/tests/test_utils.py,sha256=CkRkK3SbT4oQx_-Nq2Z0AhmhzR4kk2BkIZqSbIiPU04,4125
|
398
401
|
imio/smartweb/core/tests/test_vocabularies.py,sha256=37k8LiezqLoosJ2A4h32p78EjAwPpO8w6g3gFbt3ho8,14234
|
@@ -432,8 +435,8 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
432
435
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
433
436
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
434
437
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256=
|
436
|
-
imio/smartweb/core/upgrades/upgrades.py,sha256=
|
438
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=lwv8PyPiqZhYHJEIAuBhxeeFIjhS51j1vJcJFl4_ChM,23756
|
439
|
+
imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
|
437
440
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
438
441
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
439
442
|
imio/smartweb/core/upgrades/profiles/1020_to_1021/rolemap.xml,sha256=atPFvI1zqv3z6E7HvsFS3r4LdIFsN7VEGe-3GUEaYtY,538
|
@@ -676,10 +679,10 @@ imio/smartweb/core/webcomponents/src/hooks/useAxios.js,sha256=MsRpT8p9bZTp2Hk2sc
|
|
676
679
|
imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js,sha256=fGxgxCI22ERSlVLCYmD0-nztnGUIz-VkUNyLtj5HSuo,223
|
677
680
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=bsTZTvRlBaCImAchnuhZLtLQYC06bM539cPLoAgBMP0,2694
|
678
681
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
679
|
-
imio.smartweb.core-1.2.
|
680
|
-
imio.smartweb.core-1.2.
|
681
|
-
imio.smartweb.core-1.2.
|
682
|
-
imio.smartweb.core-1.2.
|
683
|
-
imio.smartweb.core-1.2.
|
684
|
-
imio.smartweb.core-1.2.
|
685
|
-
imio.smartweb.core-1.2.
|
682
|
+
imio.smartweb.core-1.2.10.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
683
|
+
imio.smartweb.core-1.2.10.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
684
|
+
imio.smartweb.core-1.2.10.dist-info/METADATA,sha256=slkOOL5l5q90MbHYRr4zLKgNCqsgbzG8zRAh5ib--VM,45119
|
685
|
+
imio.smartweb.core-1.2.10.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
686
|
+
imio.smartweb.core-1.2.10.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
687
|
+
imio.smartweb.core-1.2.10.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
688
|
+
imio.smartweb.core-1.2.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.2.6.dist-info → imio.smartweb.core-1.2.10.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|