imio.smartweb.core 1.2.87__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/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_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.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/METADATA +21 -2
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/RECORD +25 -14
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/WHEEL +1 -1
- /imio.smartweb.core-1.2.87-py3.12-nspkg.pth → /imio.smartweb.core-1.2.88-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.87.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
|
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>
|
@@ -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
|
-
Metadata-Version: 2.
|
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
|
@@ -57,6 +57,18 @@ Requires-Dist: plone.restapi[test]; extra == "test"
|
|
57
57
|
Requires-Dist: requests-mock; extra == "test"
|
58
58
|
Requires-Dist: beautifulsoup4; extra == "test"
|
59
59
|
Requires-Dist: freezegun; extra == "test"
|
60
|
+
Dynamic: author
|
61
|
+
Dynamic: author-email
|
62
|
+
Dynamic: classifier
|
63
|
+
Dynamic: description
|
64
|
+
Dynamic: home-page
|
65
|
+
Dynamic: keywords
|
66
|
+
Dynamic: license
|
67
|
+
Dynamic: project-url
|
68
|
+
Dynamic: provides-extra
|
69
|
+
Dynamic: requires-dist
|
70
|
+
Dynamic: requires-python
|
71
|
+
Dynamic: summary
|
60
72
|
|
61
73
|
.. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
|
62
74
|
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
|
@@ -191,6 +203,13 @@ Changelog
|
|
191
203
|
=========
|
192
204
|
|
193
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
|
+
|
194
213
|
1.2.87 (2025-02-12)
|
195
214
|
-------------------
|
196
215
|
|
@@ -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,7 +238,7 @@ 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=
|
241
|
+
imio/smartweb/core/contents/sections/configure.zcml,sha256=bHrKkHEehguoE_5tacKybAI0TKnJ68zf6TEi_mcQJfs,3429
|
242
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
|
@@ -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
|
@@ -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
|
{imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.88.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|