imio.smartweb.core 1.2.87__py3-none-any.whl → 1.2.89__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/contact/view.pt +3 -2
- imio/smartweb/core/contents/sections/contact/view.py +11 -0
- imio/smartweb/core/contents/sections/timestamped_publications/__init__.py +0 -0
- imio/smartweb/core/contents/sections/timestamped_publications/configure.zcml +14 -0
- imio/smartweb/core/contents/sections/timestamped_publications/content.py +58 -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 +35 -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 +39 -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.89.dist-info}/METADATA +31 -2
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.89.dist-info}/RECORD +27 -16
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.89.dist-info}/WHEEL +1 -1
- /imio.smartweb.core-1.2.87-py3.12-nspkg.pth → /imio.smartweb.core-1.2.89-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.89.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.89.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.89.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.87.dist-info → imio.smartweb.core-1.2.89.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
|
@@ -12,11 +12,12 @@
|
|
12
12
|
<metal:macro use-macro="context/@@sections_macros/section_edition" />
|
13
13
|
<div class="container section-container section-contact"
|
14
14
|
id=""
|
15
|
-
tal:define="batch view/contacts | nothing
|
15
|
+
tal:define="batch view/contacts | nothing;
|
16
|
+
number_of_contacts view/get_number_of_contacts"
|
16
17
|
tal:attributes="id string:container-section-${context/id}"
|
17
18
|
i18n:domain="imio.smartweb">
|
18
19
|
<metal:macro use-macro="context/@@sections_macros/section_title" />
|
19
|
-
<div
|
20
|
+
<div tal:attributes="class string:row nb-contact-by-line-${context/nb_contact_by_line} number-of-contacts-${number_of_contacts}"
|
20
21
|
tal:repeat="items batch">
|
21
22
|
<tal:loop tal:repeat="item items">
|
22
23
|
<metal:macro use-macro="context/@@contact_macros/contact_body"
|
@@ -11,6 +11,17 @@ from zope.component import queryMultiAdapter
|
|
11
11
|
class ContactView(HashableJsonSectionView):
|
12
12
|
"""Contact Section view"""
|
13
13
|
|
14
|
+
def get_number_of_contacts(self):
|
15
|
+
"""
|
16
|
+
Returns the number of related contacts.
|
17
|
+
"""
|
18
|
+
related_contacts = (
|
19
|
+
self.context.related_contacts
|
20
|
+
) # Assurez-vous que 'related_contacts' est une liste
|
21
|
+
if related_contacts:
|
22
|
+
return len(related_contacts)
|
23
|
+
return 0
|
24
|
+
|
14
25
|
def contacts(self):
|
15
26
|
# Firstly, try to get contact from the container view
|
16
27
|
container_view = queryMultiAdapter(
|
File without changes
|
@@ -0,0 +1,14 @@
|
|
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
|
+
/>
|
13
|
+
|
14
|
+
</configure>
|
@@ -0,0 +1,58 @@
|
|
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.interface import implementer
|
11
|
+
|
12
|
+
|
13
|
+
class ISectionTimestampedPublications(ISection):
|
14
|
+
"""Marker interface and Dexterity Python Schema for SectionTimestampedPublications"""
|
15
|
+
|
16
|
+
related_timestamped_publications = schema.List(
|
17
|
+
title=_("Related timestamped publications"),
|
18
|
+
value_type=schema.Choice(
|
19
|
+
source="imio.smartweb.vocabulary.IADeliberationsPublications"
|
20
|
+
),
|
21
|
+
required=False,
|
22
|
+
)
|
23
|
+
directives.widget(
|
24
|
+
"related_timestamped_publications",
|
25
|
+
TranslatedAjaxSelectWidget,
|
26
|
+
vocabulary="imio.smartweb.vocabulary.IADeliberationsPublications",
|
27
|
+
pattern_options={"multiple": True},
|
28
|
+
)
|
29
|
+
|
30
|
+
nb_results_by_batch = schema.Choice(
|
31
|
+
title=_("Number of items per batch"),
|
32
|
+
required=True,
|
33
|
+
default=3,
|
34
|
+
values=[1, 2, 3, 4],
|
35
|
+
)
|
36
|
+
|
37
|
+
max_nb_batches = schema.Int(
|
38
|
+
title=_("Maximum number of batches to display"),
|
39
|
+
required=True,
|
40
|
+
default=2,
|
41
|
+
min=1,
|
42
|
+
max=12,
|
43
|
+
)
|
44
|
+
|
45
|
+
model.fieldset("layout", fields=["show_items_description"])
|
46
|
+
show_items_description = schema.Bool(
|
47
|
+
title=_("Show items description"), required=False
|
48
|
+
)
|
49
|
+
|
50
|
+
|
51
|
+
@implementer(ISectionTimestampedPublications)
|
52
|
+
class SectionTimestampedPublications(Section):
|
53
|
+
"""SectionTimestampedPublications class"""
|
54
|
+
|
55
|
+
# We don't need to manage display on timestamped publications
|
56
|
+
# only common table view / don't need common carousel view
|
57
|
+
manage_display = False
|
58
|
+
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,35 @@
|
|
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
|
+
</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,39 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
3
|
+
name="imio.smartweb.SectionTimestampedPublications"
|
4
|
+
meta_type="Dexterity FTI"
|
5
|
+
i18n:domain="imio.smartweb">
|
6
|
+
|
7
|
+
<!-- Basic properties -->
|
8
|
+
<property
|
9
|
+
i18n:translate=""
|
10
|
+
name="title">Timestamped publications section</property>
|
11
|
+
<property
|
12
|
+
i18n:translate=""
|
13
|
+
name="description">Timestamped publication section for a page</property>
|
14
|
+
|
15
|
+
<property name="icon_expr">string:newspaper</property>
|
16
|
+
|
17
|
+
<!-- Hierarchy control -->
|
18
|
+
<property name="global_allow">False</property>
|
19
|
+
<property name="filter_content_types">True</property>
|
20
|
+
<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
|
+
</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.89
|
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,23 @@ Changelog
|
|
191
203
|
=========
|
192
204
|
|
193
205
|
|
206
|
+
1.2.89 (2025-02-18)
|
207
|
+
-------------------
|
208
|
+
|
209
|
+
- WEB-4225 : Added classes to contact sections to differentiate the type of contact (multiple or single)
|
210
|
+
[thomlamb]
|
211
|
+
|
212
|
+
- Fix issue : We don't need carousel view in timestamped publications
|
213
|
+
[boulch]
|
214
|
+
|
215
|
+
|
216
|
+
1.2.88 (2025-02-14)
|
217
|
+
-------------------
|
218
|
+
|
219
|
+
- WEB-4134 : Refactor : "Timestamped publications" is a section now (not anymore a content type to store in a section)
|
220
|
+
[boulch]
|
221
|
+
|
222
|
+
|
194
223
|
1.2.87 (2025-02-12)
|
195
224
|
-------------------
|
196
225
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.89-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
|
@@ -254,8 +254,8 @@ imio/smartweb/core/contents/sections/contact/content.py,sha256=MdhY6QPMdCseThddj
|
|
254
254
|
imio/smartweb/core/contents/sections/contact/forms.py,sha256=VlN_jse8tYxE9RCro2RgHlZRDDIyZA8Bjr-dNePZYwU,1387
|
255
255
|
imio/smartweb/core/contents/sections/contact/macros.pt,sha256=wU-wXeHzq6gvm-q2RmnjE53H1AMkVYhq2YyYZU1speM,10857
|
256
256
|
imio/smartweb/core/contents/sections/contact/utils.py,sha256=4OlmRHwvR_lUiR1DAuFbSaRhqBboZHdrPVRJz1wZN9s,5778
|
257
|
-
imio/smartweb/core/contents/sections/contact/view.pt,sha256=
|
258
|
-
imio/smartweb/core/contents/sections/contact/view.py,sha256=
|
257
|
+
imio/smartweb/core/contents/sections/contact/view.pt,sha256=yw_SXUiSXmRwCOvghsW4fduiAR-5eDi1myYYne-FyDw,1333
|
258
|
+
imio/smartweb/core/contents/sections/contact/view.py,sha256=ZNjRtE-LMSZADLBVpwF2ILi5tiepFOFtlMAciDS8RBo,2294
|
259
259
|
imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
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
|
@@ -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=89simBx4TA1uzAONzVe6eVXl74xi8cMDqbpRrqCQZhs,499
|
325
|
+
imio/smartweb/core/contents/sections/timestamped_publications/content.py,sha256=z7zsTNHVxzN-5gpYkKlE03egdQT-GA8ZWJc2mA1-DIo,1879
|
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=gShZ1Ozg7asts4OUJwKh-pTG0WFkQEazCoeoKY86Y3o,1316
|
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=4XBwOL0WkRW3WL9lnkDVdqcC64ki2ydUxUaVdb_7T7o,1444
|
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.89.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
773
|
+
imio.smartweb.core-1.2.89.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
774
|
+
imio.smartweb.core-1.2.89.dist-info/METADATA,sha256=mlf9G_CeVfm-mbkL0eb-VbNkAGfMoYXD1jscNz2JsQY,61107
|
775
|
+
imio.smartweb.core-1.2.89.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
776
|
+
imio.smartweb.core-1.2.89.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
777
|
+
imio.smartweb.core-1.2.89.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
778
|
+
imio.smartweb.core-1.2.89.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.89.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|