imio.smartweb.core 1.2.86__py3-none-any.whl → 1.2.88__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/contents/__init__.py +6 -0
- imio/smartweb/core/contents/sections/configure.zcml +1 -0
- imio/smartweb/core/contents/sections/events/view.py +0 -1
- imio/smartweb/core/contents/sections/macros.pt +6 -6
- imio/smartweb/core/contents/sections/news/view.py +0 -1
- imio/smartweb/core/contents/sections/timestamped_publications/__init__.py +0 -0
- imio/smartweb/core/contents/sections/timestamped_publications/configure.zcml +16 -0
- imio/smartweb/core/contents/sections/timestamped_publications/content.py +65 -0
- imio/smartweb/core/contents/sections/timestamped_publications/view.py +65 -0
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublications.xml +44 -0
- imio/smartweb/core/tests/test_section_contact.py +4 -4
- imio/smartweb/core/tests/test_section_external_content.py +0 -2
- imio/smartweb/core/tests/test_section_gallery.py +0 -2
- imio/smartweb/core/tests/test_vocabularies.py +1 -3
- imio/smartweb/core/upgrades/configure.zcml +19 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.Page.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.PortalPage.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionFiles.xml +11 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionTimestampedPublications.xml +48 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/types.xml +4 -0
- imio/smartweb/core/upgrades/profiles/1061_to_1062/workflows.xml +6 -0
- imio/smartweb/core/vocabularies.py +12 -7
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/METADATA +15 -1
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/RECORD +31 -20
- /imio.smartweb.core-1.2.86-py3.12-nspkg.pth → /imio.smartweb.core-1.2.88-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/top_level.txt +0 -0
@@ -59,5 +59,11 @@ from .sections.slide.content import ISectionSlide # NOQA
|
|
59
59
|
from .sections.slide.content import SectionSlide # NOQA
|
60
60
|
from .sections.text.content import ISectionText # NOQA
|
61
61
|
from .sections.text.content import SectionText # NOQA
|
62
|
+
from .sections.timestamped_publications.content import (
|
63
|
+
ISectionTimestampedPublications,
|
64
|
+
) # NOQA
|
65
|
+
from .sections.timestamped_publications.content import (
|
66
|
+
SectionTimestampedPublications,
|
67
|
+
) # NOQA
|
62
68
|
from .sections.video.content import ISectionVideo # NOQA
|
63
69
|
from .sections.video.content import SectionVideo # NOQA
|
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
from datetime import date
|
4
4
|
from dateutil.parser import parse
|
5
|
-
from DateTime import DateTime
|
6
5
|
from imio.smartweb.common.utils import translate_vocabulary_term
|
7
6
|
from imio.smartweb.core.config import EVENTS_URL
|
8
7
|
from imio.smartweb.core.contents.sections.views import CarouselOrTableSectionView
|
@@ -79,6 +79,12 @@
|
|
79
79
|
uid string:${context/UID}"
|
80
80
|
tal:content="string:${view/get_section_size}"></a>
|
81
81
|
|
82
|
+
<tal:if tal:condition="python:context.portal_type in ['imio.smartweb.SectionNews', 'imio.smartweb.SectionEvents']">
|
83
|
+
<span class="glyphicon-repeat glyphicon"></span>
|
84
|
+
<a tal:attributes="href string:${context/absolute_url}/refresh_modification_date"
|
85
|
+
i18n:translate="">Hard refresh</a>
|
86
|
+
</tal:if>
|
87
|
+
|
82
88
|
<tal:dates define="modified context/ModificationDate">
|
83
89
|
<span class="documentModified"
|
84
90
|
tal:condition="modified">
|
@@ -98,12 +104,6 @@
|
|
98
104
|
</span>
|
99
105
|
</tal:dates>
|
100
106
|
|
101
|
-
<tal:if tal:condition="python:context.portal_type in ['imio.smartweb.SectionNews', 'imio.smartweb.SectionEvents']">
|
102
|
-
<span class="glyphicon-repeat glyphicon"></span>
|
103
|
-
<a tal:attributes="href string:${context/absolute_url}/refresh_modification_date"
|
104
|
-
i18n:translate="">Refresh section</a>
|
105
|
-
</tal:if>
|
106
|
-
|
107
107
|
</div>
|
108
108
|
</div>
|
109
109
|
|
File without changes
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<configure
|
2
|
+
xmlns="http://namespaces.zope.org/zope"
|
3
|
+
xmlns:browser="http://namespaces.zope.org/browser">
|
4
|
+
|
5
|
+
<browser:page
|
6
|
+
name="table_view"
|
7
|
+
for="imio.smartweb.core.contents.ISectionTimestampedPublications"
|
8
|
+
class="imio.smartweb.core.contents.sections.timestamped_publications.view.TimestampedPublicationsView"
|
9
|
+
template="../common_templates/table.pt"
|
10
|
+
permission="zope2.View"
|
11
|
+
layer="imio.smartweb.core.interfaces.IImioSmartwebCoreLayer"
|
12
|
+
menu="plone_displayviews"
|
13
|
+
title="Table view"
|
14
|
+
/>
|
15
|
+
|
16
|
+
</configure>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
from imio.smartweb.common.widgets.select import TranslatedAjaxSelectWidget
|
4
|
+
from imio.smartweb.core.contents.sections.base import ISection
|
5
|
+
from imio.smartweb.core.contents.sections.base import Section
|
6
|
+
from imio.smartweb.locales import SmartwebMessageFactory as _
|
7
|
+
from plone.autoform import directives
|
8
|
+
from plone.supermodel import model
|
9
|
+
from zope import schema
|
10
|
+
from zope.globalrequest import getRequest
|
11
|
+
from zope.i18n import translate
|
12
|
+
from zope.interface import implementer
|
13
|
+
from zope.interface import provider
|
14
|
+
from zope.schema.interfaces import IContextAwareDefaultFactory
|
15
|
+
|
16
|
+
|
17
|
+
@provider(IContextAwareDefaultFactory)
|
18
|
+
def see_all_default(context):
|
19
|
+
return translate(_("See all news"), context=getRequest())
|
20
|
+
|
21
|
+
|
22
|
+
class ISectionTimestampedPublications(ISection):
|
23
|
+
"""Marker interface and Dexterity Python Schema for SectionTimestampedPublications"""
|
24
|
+
|
25
|
+
related_timestamped_publications = schema.List(
|
26
|
+
title=_("Related timestamped publications"),
|
27
|
+
value_type=schema.Choice(
|
28
|
+
source="imio.smartweb.vocabulary.IADeliberationsPublications"
|
29
|
+
),
|
30
|
+
required=False,
|
31
|
+
)
|
32
|
+
directives.widget(
|
33
|
+
"related_timestamped_publications",
|
34
|
+
TranslatedAjaxSelectWidget,
|
35
|
+
vocabulary="imio.smartweb.vocabulary.IADeliberationsPublications",
|
36
|
+
pattern_options={"multiple": True},
|
37
|
+
)
|
38
|
+
|
39
|
+
nb_results_by_batch = schema.Choice(
|
40
|
+
title=_("Number of items per batch"),
|
41
|
+
required=True,
|
42
|
+
default=3,
|
43
|
+
values=[1, 2, 3, 4],
|
44
|
+
)
|
45
|
+
|
46
|
+
max_nb_batches = schema.Int(
|
47
|
+
title=_("Maximum number of batches to display"),
|
48
|
+
required=True,
|
49
|
+
default=2,
|
50
|
+
min=1,
|
51
|
+
max=12,
|
52
|
+
)
|
53
|
+
|
54
|
+
model.fieldset("layout", fields=["show_items_description"])
|
55
|
+
show_items_description = schema.Bool(
|
56
|
+
title=_("Show items description"), required=False
|
57
|
+
)
|
58
|
+
|
59
|
+
|
60
|
+
@implementer(ISectionTimestampedPublications)
|
61
|
+
class SectionTimestampedPublications(Section):
|
62
|
+
"""SectionTimestampedPublications class"""
|
63
|
+
|
64
|
+
manage_display = True
|
65
|
+
show_items_date = True
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
from imio.smartweb.core.contents.sections.views import CarouselOrTableSectionView
|
4
|
+
from imio.smartweb.core.contents.sections.views import HashableJsonSectionView
|
5
|
+
from imio.smartweb.core.utils import batch_results
|
6
|
+
from imio.smartweb.core.utils import get_iadeliberation_institution_from_registry
|
7
|
+
from imio.smartweb.core.utils import get_iadeliberation_json
|
8
|
+
from imio.smartweb.core.utils import hash_md5
|
9
|
+
from imio.smartweb.core.utils import remove_cache_key
|
10
|
+
|
11
|
+
|
12
|
+
class TimestampedPublicationsView(CarouselOrTableSectionView, HashableJsonSectionView):
|
13
|
+
"""TimestampedPublications Section view"""
|
14
|
+
|
15
|
+
@property
|
16
|
+
def items(self):
|
17
|
+
iadeliberation_institution = get_iadeliberation_institution_from_registry()
|
18
|
+
max_items = self.context.nb_results_by_batch * self.context.max_nb_batches
|
19
|
+
selected_item = "&UID=".join(self.context.related_timestamped_publications)
|
20
|
+
modified_hash = hash_md5(str(self.context.modification_date))
|
21
|
+
params = [
|
22
|
+
selected_item,
|
23
|
+
"portal_type=Publication",
|
24
|
+
"fullobjects=y",
|
25
|
+
"metadata_fields=UID",
|
26
|
+
"metadata_fields=id",
|
27
|
+
"review_state=published",
|
28
|
+
"sort_on=sortable_title",
|
29
|
+
"metadata_fields=modified",
|
30
|
+
"metadata_fields=effective",
|
31
|
+
f"cache_key={modified_hash}",
|
32
|
+
f"sort_limit={max_items}",
|
33
|
+
]
|
34
|
+
url = "{}/@search?UID={}".format(iadeliberation_institution, "&".join(params))
|
35
|
+
self.json_data = get_iadeliberation_json(url)
|
36
|
+
self.json_data = remove_cache_key(self.json_data)
|
37
|
+
self.refresh_modification_date()
|
38
|
+
if self.json_data is None or len(self.json_data.get("items", [])) == 0:
|
39
|
+
return []
|
40
|
+
items = self.json_data.get("items")[:max_items]
|
41
|
+
results = []
|
42
|
+
for item in items:
|
43
|
+
type_document = None
|
44
|
+
category = None
|
45
|
+
if item.get("document_type"):
|
46
|
+
type_document = item.get("document_type").get("title")
|
47
|
+
if item.get("category"):
|
48
|
+
category = item.get("category").get("title")
|
49
|
+
dict_item = {
|
50
|
+
"uid": item.get("UID"),
|
51
|
+
"title": item.get("title"),
|
52
|
+
"description": item.get("description"),
|
53
|
+
"url": item.get("@id"),
|
54
|
+
"effective": item.get("effective"),
|
55
|
+
"publication_document_type": type_document,
|
56
|
+
"publication_category": category,
|
57
|
+
"publication_attached_file": item.get("file"),
|
58
|
+
"has_image": False,
|
59
|
+
}
|
60
|
+
results.append(dict_item)
|
61
|
+
return batch_results(results, self.context.nb_results_by_batch)
|
62
|
+
|
63
|
+
@property
|
64
|
+
def see_all_url(self):
|
65
|
+
return self.context.linking_rest_view.to_object.absolute_url()
|
@@ -0,0 +1,44 @@
|
|
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
|
+
<!-- View information -->
|
36
|
+
<property name="default_view">carousel_view</property>
|
37
|
+
<property name="default_view_fallback">False</property>
|
38
|
+
<property name="immediate_view">view</property>
|
39
|
+
<property name="view_methods">
|
40
|
+
<element value="carousel_view"/>
|
41
|
+
<element value="table_view"/>
|
42
|
+
</property>
|
43
|
+
|
44
|
+
</object>
|
@@ -618,7 +618,7 @@ class TestSectionContact(ImioSmartwebTestCase):
|
|
618
618
|
)
|
619
619
|
)
|
620
620
|
m.get(contact_search_url, text=json.dumps(self.json_contact))
|
621
|
-
contact_view = queryMultiAdapter((contact, self.request), name="view")
|
621
|
+
# contact_view = queryMultiAdapter((contact, self.request), name="view")
|
622
622
|
view = queryMultiAdapter((self.page, self.request), name="full_view")
|
623
623
|
self.assertNotIn('Error in section : "My contact"', view())
|
624
624
|
self.assertNotIn("contact_informations_social", view())
|
@@ -627,7 +627,7 @@ class TestSectionContact(ImioSmartwebTestCase):
|
|
627
627
|
sleep(1)
|
628
628
|
m.get(contact_search_url, text=json.dumps(self.json_contact))
|
629
629
|
clear_cache(self.request)
|
630
|
-
contact_view = queryMultiAdapter((contact, self.request), name="view")
|
630
|
+
# contact_view = queryMultiAdapter((contact, self.request), name="view")
|
631
631
|
view = queryMultiAdapter((self.page, self.request), name="full_view")
|
632
632
|
self.assertNotIn('Error in section : "My contact"', view())
|
633
633
|
self.assertNotIn("contact_informations_social", view())
|
@@ -641,7 +641,7 @@ class TestSectionContact(ImioSmartwebTestCase):
|
|
641
641
|
sleep(1)
|
642
642
|
m.get(contact_search_url, text=json.dumps(self.json_contact))
|
643
643
|
clear_cache(self.request)
|
644
|
-
contact_view = queryMultiAdapter((contact, self.request), name="view")
|
644
|
+
# contact_view = queryMultiAdapter((contact, self.request), name="view")
|
645
645
|
view = queryMultiAdapter((self.page, self.request), name="full_view")
|
646
646
|
self.assertNotIn('Error in section : "My contact"', view())
|
647
647
|
self.assertNotIn("contact_informations_social", view())
|
@@ -655,7 +655,7 @@ class TestSectionContact(ImioSmartwebTestCase):
|
|
655
655
|
sleep(1)
|
656
656
|
m.get(contact_search_url, text=json.dumps(self.json_contact))
|
657
657
|
clear_cache(self.request)
|
658
|
-
contact_view = queryMultiAdapter((contact, self.request), name="view")
|
658
|
+
# contact_view = queryMultiAdapter((contact, self.request), name="view")
|
659
659
|
view = queryMultiAdapter((self.page, self.request), name="full_view")
|
660
660
|
self.assertNotIn('Error in section : "My contact"', view())
|
661
661
|
self.assertIn("contact_informations_social", view())
|
@@ -7,8 +7,6 @@ from plone import api
|
|
7
7
|
from plone.app.testing import setRoles
|
8
8
|
from plone.app.testing import TEST_USER_ID
|
9
9
|
from zope.component import queryMultiAdapter
|
10
|
-
from zope.interface import alsoProvides
|
11
|
-
from zope.interface import noLongerProvides
|
12
10
|
|
13
11
|
|
14
12
|
class TestSectionExternalContent(ImioSmartwebTestCase):
|
@@ -4,8 +4,6 @@ from imio.smartweb.core.testing import IMIO_SMARTWEB_CORE_INTEGRATION_TESTING
|
|
4
4
|
from imio.smartweb.core.testing import ImioSmartwebTestCase
|
5
5
|
from imio.smartweb.core.tests.utils import make_named_image
|
6
6
|
from plone import api
|
7
|
-
from plone.app.testing import login
|
8
|
-
from plone.app.testing import logout
|
9
7
|
from plone.app.testing import setRoles
|
10
8
|
from plone.app.testing import TEST_USER_ID
|
11
9
|
from plone.namedfile.file import NamedBlobImage
|
@@ -344,8 +344,6 @@ class TestVocabularies(ImioSmartwebTestCase):
|
|
344
344
|
"imio.smartweb.vocabulary.IADeliberationsPublications"
|
345
345
|
)
|
346
346
|
self.assertEqual(
|
347
|
-
vocabulary.getTerm(
|
348
|
-
"autorisation-de-deroger-temporairement-aux-normes-de-bruit-fete-de-la-musique-2023"
|
349
|
-
).title,
|
347
|
+
vocabulary.getTerm("1eb1d97e162a4fe4be802ccd812fa180").title,
|
350
348
|
"Autorisation de déroger temporairement aux normes de bruit - Fête de la Musique 2023",
|
351
349
|
)
|
@@ -267,6 +267,14 @@
|
|
267
267
|
provides="Products.GenericSetup.interfaces.EXTENSION"
|
268
268
|
/>
|
269
269
|
|
270
|
+
<genericsetup:registerProfile
|
271
|
+
name="upgrade_1061_to_1062"
|
272
|
+
title="Upgrade core from 1061 to 1062"
|
273
|
+
directory="profiles/1061_to_1062"
|
274
|
+
description="In the end, it's better for timestamped publications to be handled as a section. (For layout reasons)"
|
275
|
+
provides="Products.GenericSetup.interfaces.EXTENSION"
|
276
|
+
/>
|
277
|
+
|
270
278
|
<genericsetup:upgradeStep
|
271
279
|
title="Configure first official release"
|
272
280
|
description="Run needed profiles steps and reindex catalog"
|
@@ -891,4 +899,15 @@
|
|
891
899
|
/>
|
892
900
|
</genericsetup:upgradeSteps>
|
893
901
|
|
902
|
+
<genericsetup:upgradeSteps
|
903
|
+
source="1061"
|
904
|
+
destination="1062"
|
905
|
+
profile="imio.smartweb.core:default">
|
906
|
+
<genericsetup:upgradeDepends
|
907
|
+
title="In the end, it's better for timestamped publications to be handled as a section. (For layout reasons)"
|
908
|
+
import_profile="imio.smartweb.core.upgrades:upgrade_1061_to_1062"
|
909
|
+
/>
|
910
|
+
</genericsetup:upgradeSteps>
|
911
|
+
|
912
|
+
|
894
913
|
</configure>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="imio.smartweb.Page"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<property name="allowed_content_types" purge="false">
|
8
|
+
<element value="imio.smartweb.SectionTimestampedPublications" />
|
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.Page"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<property name="allowed_content_types" purge="false">
|
8
|
+
<element value="imio.smartweb.SectionTimestampedPublications" />
|
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.SectionFiles"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<property name="allowed_content_types" purge="true">
|
8
|
+
<element value="File" />
|
9
|
+
</property>
|
10
|
+
|
11
|
+
</object>
|
@@ -0,0 +1,48 @@
|
|
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
|
+
<property name="allowed_content_types">
|
21
|
+
<element value="imio.smartweb.SectionTimestampedPublications" />
|
22
|
+
</property>
|
23
|
+
|
24
|
+
<!-- Schema, class and security -->
|
25
|
+
<!-- if we can add a page, we can add a page section -->
|
26
|
+
<property name="add_permission">imio.smartweb.core.AddPage</property>
|
27
|
+
<property name="klass">imio.smartweb.core.contents.SectionTimestampedPublications</property>
|
28
|
+
<property name="schema">imio.smartweb.core.contents.ISectionTimestampedPublications</property>
|
29
|
+
|
30
|
+
<!-- Enabled behaviors -->
|
31
|
+
<property name="behaviors" purge="false">
|
32
|
+
<element value="plone.namefromtitle"/>
|
33
|
+
<element value="plone.locking"/>
|
34
|
+
<element value="plone.shortname"/>
|
35
|
+
<element value="imio.smartweb.category_display"/>
|
36
|
+
<element value="imio.smartweb.orientation"/>
|
37
|
+
</property>
|
38
|
+
|
39
|
+
<!-- View information -->
|
40
|
+
<property name="default_view">carousel_view</property>
|
41
|
+
<property name="default_view_fallback">False</property>
|
42
|
+
<property name="immediate_view">view</property>
|
43
|
+
<property name="view_methods">
|
44
|
+
<element value="carousel_view"/>
|
45
|
+
<element value="table_view"/>
|
46
|
+
</property>
|
47
|
+
|
48
|
+
</object>
|
@@ -661,13 +661,18 @@ class RemoteIADeliberationsPublicationsVocabularyFactory:
|
|
661
661
|
def __call__(self, context=None):
|
662
662
|
iadeliberation_institution = get_iadeliberation_institution_from_registry()
|
663
663
|
url = f"{iadeliberation_institution}/@search?portal_type=Publication&metadata_fields=UID&metadata_fields=id&review_state=published&sort_on=sortable_title"
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
664
|
+
try:
|
665
|
+
json_publications = get_iadeliberation_json(url)
|
666
|
+
return SimpleVocabulary(
|
667
|
+
[
|
668
|
+
SimpleTerm(
|
669
|
+
value=elem["UID"], token=elem["UID"], title=elem["title"]
|
670
|
+
)
|
671
|
+
for elem in json_publications.get("items")
|
672
|
+
]
|
673
|
+
)
|
674
|
+
except Exception:
|
675
|
+
return SimpleVocabulary([])
|
671
676
|
|
672
677
|
|
673
678
|
RemoteIADeliberationsPublicationsVocabulary = (
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.88
|
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,20 @@ Changelog
|
|
203
203
|
=========
|
204
204
|
|
205
205
|
|
206
|
+
1.2.88 (2025-02-14)
|
207
|
+
-------------------
|
208
|
+
|
209
|
+
- WEB-4134 : Refactor : "Timestamped publications" is a section now (not anymore a content type to store in a section)
|
210
|
+
[boulch]
|
211
|
+
|
212
|
+
|
213
|
+
1.2.87 (2025-02-12)
|
214
|
+
-------------------
|
215
|
+
|
216
|
+
- WEB-4153 : Move and rename the refresh_modification_date action
|
217
|
+
[remdub]
|
218
|
+
|
219
|
+
|
206
220
|
1.2.86 (2025-02-10)
|
207
221
|
-------------------
|
208
222
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.88-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
|
@@ -13,7 +13,7 @@ imio/smartweb/core/subscribers.zcml,sha256=BnrxZp4AfsRYreYHsJJxKgPQZJ-wpNM2XnDTu
|
|
13
13
|
imio/smartweb/core/testing.py,sha256=t0Y3t3FXX2RjgklcRzHT37AjKbMKL3ZjjT3d2UhQm7A,3636
|
14
14
|
imio/smartweb/core/testing.zcml,sha256=VyKjWW2QHYuUYKkGUvtsdFI_Pa7Wcp1yBBDla112eMc,172
|
15
15
|
imio/smartweb/core/utils.py,sha256=ToipQdzA1WnX8SLKIwaWhH7JraOBU89Q7ez2AJfAng8,8364
|
16
|
-
imio/smartweb/core/vocabularies.py,sha256=
|
16
|
+
imio/smartweb/core/vocabularies.py,sha256=6DykA6VR4Q2qn-13dKHN5Hbne9DtPV8pTPpqRLLgI3M,23060
|
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
|
@@ -157,7 +157,7 @@ imio/smartweb/core/browser/subsite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
157
157
|
imio/smartweb/core/browser/subsite/configure.zcml,sha256=ITEH-6pVztshQElqjNv9sk-CcVUTLFeccdSO9rHLwt0,414
|
158
158
|
imio/smartweb/core/browser/subsite/settings.py,sha256=tXEnEYZG75eM7H766ZgNCCWMwOcY9j45shD-8NR_7I0,1601
|
159
159
|
imio/smartweb/core/browser/templates/link_input.pt,sha256=Q7Y4gW4q0DVG-U5f3ZJkrAZwJnV8NMPu_Fdht7zhb4A,2808
|
160
|
-
imio/smartweb/core/contents/__init__.py,sha256=
|
160
|
+
imio/smartweb/core/contents/__init__.py,sha256=OlnHoPzWP6o52Urk5E49fbTMOsRYQTsSX-k-64MtYuc,3703
|
161
161
|
imio/smartweb/core/contents/configure.zcml,sha256=heQRN2fw2SM7ILzCsM-5sK1J3EfRrNctqYdpr1wncdk,844
|
162
162
|
imio/smartweb/core/contents/cropping.py,sha256=3RYRf3kZkRxcwuNsTUnsb1OKbLD9seBu3So_8k7XBXQ,1482
|
163
163
|
imio/smartweb/core/contents/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -238,8 +238,8 @@ imio/smartweb/core/contents/rest/search/configure.zcml,sha256=BTFcBQ28NINyEfoVgY
|
|
238
238
|
imio/smartweb/core/contents/rest/search/endpoint.py,sha256=i5LMM0R1Xvpy76JHO6pI98G41Xep15fPR9uv9rqropo,9797
|
239
239
|
imio/smartweb/core/contents/sections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
240
|
imio/smartweb/core/contents/sections/base.py,sha256=2e3lIG_RGGFAshBEkTNG97OReAnn9GLQk_O_Eqh7SRY,2486
|
241
|
-
imio/smartweb/core/contents/sections/configure.zcml,sha256=
|
242
|
-
imio/smartweb/core/contents/sections/macros.pt,sha256=
|
241
|
+
imio/smartweb/core/contents/sections/configure.zcml,sha256=bHrKkHEehguoE_5tacKybAI0TKnJ68zf6TEi_mcQJfs,3429
|
242
|
+
imio/smartweb/core/contents/sections/macros.pt,sha256=7viDONQ050hC4sUynjtNKbvDCGLA3hKcitnq9Lv75OI,5920
|
243
243
|
imio/smartweb/core/contents/sections/subscriber.py,sha256=WM7nEZVPOkmyT1GfkWGDWwLhuhUYaTnlBr6BJVqUJMk,642
|
244
244
|
imio/smartweb/core/contents/sections/views.py,sha256=0KA81s4rDfxTbT-CrxOv01uZ0dv2BDYeejjAvh7BIL8,6378
|
245
245
|
imio/smartweb/core/contents/sections/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -260,7 +260,7 @@ imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
260
260
|
imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
|
261
261
|
imio/smartweb/core/contents/sections/events/content.py,sha256=aolTpBgOCKu4EHLQUFjOkFN7YpJId0Wpj_iH5AZ9Vvk,3246
|
262
262
|
imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
|
263
|
-
imio/smartweb/core/contents/sections/events/view.py,sha256=
|
263
|
+
imio/smartweb/core/contents/sections/events/view.py,sha256=L9GFxQa5BDYA4coXdz1BIaOQil8ZCfv1wF6wOxmMcR4,4744
|
264
264
|
imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
265
|
imio/smartweb/core/contents/sections/external_content/configure.zcml,sha256=6ZvD4hJiXMZM2-mz9D7ipZcphS5HKJFREG9XUzF_6ms,1651
|
266
266
|
imio/smartweb/core/contents/sections/external_content/content.py,sha256=apHtfPwxkHkLQJVFVXs4F8O0gE09uI49AFQ8xRFrXgo,1096
|
@@ -295,7 +295,7 @@ imio/smartweb/core/contents/sections/map/views.py,sha256=3Z5oFis2NIByJCHh8bjAlLu
|
|
295
295
|
imio/smartweb/core/contents/sections/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
296
296
|
imio/smartweb/core/contents/sections/news/configure.zcml,sha256=8MOIEeI7Zr_wbNVgiMa_21Ohgv_bkpEi_7gJu6NK380,880
|
297
297
|
imio/smartweb/core/contents/sections/news/content.py,sha256=A79d6gfxiqrrL87VPqFz13NYAfTjHbSFNZlpi1kixzE,3261
|
298
|
-
imio/smartweb/core/contents/sections/news/view.py,sha256=
|
298
|
+
imio/smartweb/core/contents/sections/news/view.py,sha256=f-eVoGwqGw2N06ClHgEzqvCnHIoei_rFg_FzuadnbXs,4371
|
299
299
|
imio/smartweb/core/contents/sections/postit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
300
300
|
imio/smartweb/core/contents/sections/postit/configure.zcml,sha256=Q0Szs1pmrNP2OiRROpeSQPKLV3tCpyjqZa9vwNFTK9Q,504
|
301
301
|
imio/smartweb/core/contents/sections/postit/content.py,sha256=--bqQPsjpKuqMzOb21eOERjp2a2QehGTAsBvZ3FnQMA,2239
|
@@ -320,6 +320,10 @@ imio/smartweb/core/contents/sections/text/content.py,sha256=XCOaPWD3iKe0QF1dIK1e
|
|
320
320
|
imio/smartweb/core/contents/sections/text/forms.py,sha256=BHPxF-LbODbVoVTq6b-Mx1zM-thRhqu3kSY1tOrTDvw,1818
|
321
321
|
imio/smartweb/core/contents/sections/text/view.pt,sha256=vzvOIboG-aBRAgcNW9P8XUl09G9XRgYl6Ls5SLSWTgo,1802
|
322
322
|
imio/smartweb/core/contents/sections/text/views.py,sha256=J1Vy4AEzM7AahtDKc5cY23N3-7Yv4oHxzJJWc0huPcM,526
|
323
|
+
imio/smartweb/core/contents/sections/timestamped_publications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
324
|
+
imio/smartweb/core/contents/sections/timestamped_publications/configure.zcml,sha256=M5ORzCGHiWzrdbB9x2mWS_jsq14Wr1wfVe6kpY1wcdw,556
|
325
|
+
imio/smartweb/core/contents/sections/timestamped_publications/content.py,sha256=TejZ1taInw57z-GJfkxswjhWB636Sdc5OTOy9SD84OQ,2055
|
326
|
+
imio/smartweb/core/contents/sections/timestamped_publications/view.py,sha256=ZDvAtRDuoNyXj1CvTsocVKaoweI3Gqpw-3-YaRARNRg,2827
|
323
327
|
imio/smartweb/core/contents/sections/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
324
328
|
imio/smartweb/core/contents/sections/video/configure.zcml,sha256=fB2sr0jyVajOXCIuQuDVzAGm-KV5yRpxFvEyrLm3CEE,418
|
325
329
|
imio/smartweb/core/contents/sections/video/content.py,sha256=zWba02hLpdbzvbXoRDw4wgnABZ5w6iwmEb6Jd_-rpEU,978
|
@@ -335,7 +339,7 @@ imio/smartweb/core/profiles/default/browserlayer.xml,sha256=j9-hf9pW0KRVUx9S7sOH
|
|
335
339
|
imio/smartweb/core/profiles/default/catalog.xml,sha256=AZx3c3qR6ANx8y269IxmDOIvB7yVSOTy6D1nP9kXza0,864
|
336
340
|
imio/smartweb/core/profiles/default/controlpanel.xml,sha256=9FSBU7UaS7-b02DRCmbAs-j0HgdVzbP-TQQ8T9rXvyE,400
|
337
341
|
imio/smartweb/core/profiles/default/diff_tool.xml,sha256=66L2L7ZBGJajPDeHl16A3h6RUcj9l0C7qpwe8JSYe7o,212
|
338
|
-
imio/smartweb/core/profiles/default/metadata.xml,sha256=
|
342
|
+
imio/smartweb/core/profiles/default/metadata.xml,sha256=7GVg9N7OC10GiMtfa2L4AhjxMU517w-QinRitKkztO8,1218
|
339
343
|
imio/smartweb/core/profiles/default/repositorytool.xml,sha256=aTErs-VvEEV3dm9_TdgPZfx1Pb1f5Sw7ap7IgiJOK4w,227
|
340
344
|
imio/smartweb/core/profiles/default/rolemap.xml,sha256=xZIPtzR9vfQLMZKg8FPLdIIeYb2VzjXl8z2CtURWGsc,2726
|
341
345
|
imio/smartweb/core/profiles/default/types.xml,sha256=k4V9-IxygB_2YPHWjQ7y_Upl443ksxfC_MC9mz9o3Yc,2111
|
@@ -378,6 +382,7 @@ imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml,sh
|
|
378
382
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml,sha256=p0EQnnc9B28iMocTrKBdr_zzmDECQWcjDrJKH_hFYs4,1142
|
379
383
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml,sha256=Fd_TzGY_OS5OTH_hubkg-bQUmNIO1zGgaKs2jLyhrJY,1127
|
380
384
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml,sha256=1rU_Z0h-ghzt_wcCvLlt2A5HsuZ5Ey_OvHaFRJwHB3E,1241
|
385
|
+
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=AMQIebQvs-ON7E64NVjkYFGXoO0CKuRz6a5Z8-VHnaU,1628
|
381
386
|
imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml,sha256=SizWFzAer6gHpUKaNfGcKZe246eVLnFcra50fff2qAc,1167
|
382
387
|
imio/smartweb/core/profiles/icons/basic/registry.xml,sha256=mSsx5FJZi9A6az0Hk1Otg3D2an5uUST8YnrZKrMiLvc,23211
|
383
388
|
imio/smartweb/core/profiles/icons/contenttypes/registry.xml,sha256=nYHOYa4R1KZZh75n9gaMhHaPXAaXjCKX2tW5t7afFhg,8766
|
@@ -425,10 +430,10 @@ imio/smartweb/core/tests/test_redirect_to_main_react_view.py,sha256=3Pa_4BAmyz67
|
|
425
430
|
imio/smartweb/core/tests/test_rest.py,sha256=t7dp7YWUCKR75tsU3vVOzAy9HivGBWuMJoeMpuKOXbM,27374
|
426
431
|
imio/smartweb/core/tests/test_robot.py,sha256=NQ7AkN4tEva3bgGjMxmyqY0zIo4pJPnPOwnD9hmrTVI,926
|
427
432
|
imio/smartweb/core/tests/test_search.py,sha256=VryeRI4_5CvnStKOoNoG95M2WTy7Lyy_AhHIDG40M14,2182
|
428
|
-
imio/smartweb/core/tests/test_section_contact.py,sha256=
|
433
|
+
imio/smartweb/core/tests/test_section_contact.py,sha256=aJUwOaP9OEpgGKXlQ6xIrP-3gHAeujF0Bnt8xw1llm8,27352
|
429
434
|
imio/smartweb/core/tests/test_section_events.py,sha256=7eP-HmXp0D3gvOrjVpzVPmV9nF_PKERnmOGz1G3Z0l0,8641
|
430
|
-
imio/smartweb/core/tests/test_section_external_content.py,sha256=
|
431
|
-
imio/smartweb/core/tests/test_section_gallery.py,sha256=
|
435
|
+
imio/smartweb/core/tests/test_section_external_content.py,sha256=OW89j-ZGHT1wSAul1HlwUTjImUhQddQlKxfvzcyLwW4,7533
|
436
|
+
imio/smartweb/core/tests/test_section_gallery.py,sha256=osXo6wT96JOxA_FBvK93s-Z9R-ndOabiSeSbCZzpTmI,2614
|
432
437
|
imio/smartweb/core/tests/test_section_news.py,sha256=6S7-r6ZnpeN_JdLYLZMWbHKRzeuf5ynPWnox2DDFPZk,9126
|
433
438
|
imio/smartweb/core/tests/test_section_sendinblue.py,sha256=UmmKo33T9feelumxqeejM4HG4oLRPKJkbB8hkLO144E,2661
|
434
439
|
imio/smartweb/core/tests/test_sections.py,sha256=zOILZHSXOw7vk-6QaibjIrbbfOAeDRk1iSgYI47TGgU,25249
|
@@ -439,7 +444,7 @@ imio/smartweb/core/tests/test_subsite.py,sha256=wiD8Ke4_-ArstSYNLCs8ArqOuDx2xxUR
|
|
439
444
|
imio/smartweb/core/tests/test_text.py,sha256=DtZNNGJ-MDYbJ-YQj2C0q2Hr7t4-sUbV6SWkE7tihBY,4652
|
440
445
|
imio/smartweb/core/tests/test_toolbar.py,sha256=dxwOGNOg2wPkAnPU3hqGCI6VL2D2nPOIOtbMorvjfps,3823
|
441
446
|
imio/smartweb/core/tests/test_utils.py,sha256=W_gR8ZOecscA6f86qrcOeQVGCzdyqhlzP6TgQI5ah2g,5045
|
442
|
-
imio/smartweb/core/tests/test_vocabularies.py,sha256=
|
447
|
+
imio/smartweb/core/tests/test_vocabularies.py,sha256=Wlz7t_JfgT2IkRvl8uHL_87NsDFcKb0J1ycXGIB6AJg,16876
|
443
448
|
imio/smartweb/core/tests/test_vocabulary.py,sha256=9S3BtVIJbN1o0q2qMcX8k0CdUwixmc3DBs_s5qFrJwA,1648
|
444
449
|
imio/smartweb/core/tests/utils.py,sha256=hsDrWOxL0oNNyx92Hke9Kj9ByKzc2kZ19q9QPVsNud4,2688
|
445
450
|
imio/smartweb/core/tests/resources/cirkwi_bad_widget_mock.html,sha256=13YeZ0mo8PoeHIHa64SLKuhNfGqBMT2uprmYDyQxE78,150
|
@@ -481,7 +486,7 @@ imio/smartweb/core/tests/robot/test_ct_page.robot,sha256=UoH47egHyCCVHmfqPdA1vQe
|
|
481
486
|
imio/smartweb/core/tests/robot/test_ct_procedure.robot,sha256=vTeIpI4inkRWbJy41EZc1bkLL5tLrblRFYtNA820H68,2712
|
482
487
|
imio/smartweb/core/tests/robot/test_example.robot,sha256=G_rUe5kTswB8E8xtM92zF78H1wotHxhzzZH8zrfrDi8,2003
|
483
488
|
imio/smartweb/core/upgrades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
484
|
-
imio/smartweb/core/upgrades/configure.zcml,sha256
|
489
|
+
imio/smartweb/core/upgrades/configure.zcml,sha256=VQri0N1GFqoGpprJ17-4Cp6v5l1He8S6lVFYbjAm7q0,30772
|
485
490
|
imio/smartweb/core/upgrades/upgrades.py,sha256=SZHVeYODErjQZR_LzQ0cxBnJoqWRWsIiRpUhNTMiz7k,8295
|
486
491
|
imio/smartweb/core/upgrades/profiles/1015_to_1016/registry/e-guichet-icon.xml,sha256=CG5K3-MCDqdMl7Dog-yvNZK0u0t8ipK-6QCcBNLb4cY,481
|
487
492
|
imio/smartweb/core/upgrades/profiles/1016_to_1017/registry/shop-icon.xml,sha256=vvmcWnYlU5Yic6RrOhziRj0RsveKaclNM5xWJVHx6r0,478
|
@@ -610,6 +615,12 @@ imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml,sha256=J9Ol_US14WMtz
|
|
610
615
|
imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml,sha256=V6BtsGLA7R-PgfzfwB50vbA9Hexas_Gg8hZGJIKRMb0,171
|
611
616
|
imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml,sha256=qac_W2czX6n7zibt_jzopRWcuEIvQzEqm9x_HKMCthc,1259
|
612
617
|
imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml,sha256=wF7MUhCzPt134TwwqKogRC-9iu_ugpOdri48b4AfAG4,312
|
618
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/types.xml,sha256=T3cECNFyCve4LevcNJkgZUESronzbdoKMzvkNRLdUBE,197
|
619
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/workflows.xml,sha256=agyIkvKVCKPoMi672HQjAV6EwRFtjlYbMiutSa5Bz58,190
|
620
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.Page.xml,sha256=N0nbLh52uUc7uzDEImsmigFdU0O6XMh_tjozjHyV1jI,323
|
621
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.PortalPage.xml,sha256=N0nbLh52uUc7uzDEImsmigFdU0O6XMh_tjozjHyV1jI,323
|
622
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionFiles.xml,sha256=mHnNszcRlhohtz2GiA5b9sIws1Tj7JL_TDXEX2lFqGI,290
|
623
|
+
imio/smartweb/core/upgrades/profiles/1061_to_1062/types/imio.smartweb.SectionTimestampedPublications.xml,sha256=2edI7m6XU9uwHIus1SwFay6VkZw3uIhJBNhj2iMpgjA,1756
|
613
624
|
imio/smartweb/core/viewlets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
614
625
|
imio/smartweb/core/viewlets/actions.py,sha256=QWj_pLNxH4223XPk4b4Dc79DiajF0HHfaXlUmXTwJ8k,661
|
615
626
|
imio/smartweb/core/viewlets/arcgis_header.pt,sha256=iQc5ZG3g1Cmap963OG-wPotllr7oWmVSMoAnA7tctrQ,3428
|
@@ -758,10 +769,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aY
|
|
758
769
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
|
759
770
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
|
760
771
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
761
|
-
imio.smartweb.core-1.2.
|
762
|
-
imio.smartweb.core-1.2.
|
763
|
-
imio.smartweb.core-1.2.
|
764
|
-
imio.smartweb.core-1.2.
|
765
|
-
imio.smartweb.core-1.2.
|
766
|
-
imio.smartweb.core-1.2.
|
767
|
-
imio.smartweb.core-1.2.
|
772
|
+
imio.smartweb.core-1.2.88.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
773
|
+
imio.smartweb.core-1.2.88.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
774
|
+
imio.smartweb.core-1.2.88.dist-info/METADATA,sha256=lyvX2dtYFHO4EI0SJkEfVBcccBUt-PZfqPP9AbJ6guQ,60864
|
775
|
+
imio.smartweb.core-1.2.88.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
776
|
+
imio.smartweb.core-1.2.88.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
777
|
+
imio.smartweb.core-1.2.88.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
778
|
+
imio.smartweb.core-1.2.88.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.2.86.dist-info → imio.smartweb.core-1.2.88.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|