imio.smartweb.core 1.2.57__py3-none-any.whl → 1.2.59__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imio/smartweb/core/browser/vocabulary.py +5 -1
- imio/smartweb/core/contents/sections/events/content.py +2 -1
- imio/smartweb/core/contents/sections/news/content.py +2 -1
- imio/smartweb/core/rest/authentic_sources.py +2 -0
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/METADATA +15 -1
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/RECORD +12 -12
- /imio.smartweb.core-1.2.57-py3.10-nspkg.pth → /imio.smartweb.core-1.2.59-py3.10-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/top_level.txt +0 -0
@@ -10,7 +10,11 @@ class SmartwebVocabularyView(TranslatedVocabularyView):
|
|
10
10
|
def __call__(self):
|
11
11
|
form = self.request.form
|
12
12
|
name = form.get("name")
|
13
|
-
if name
|
13
|
+
if name not in [
|
14
|
+
"imio.smartweb.vocabulary.RemoteContacts",
|
15
|
+
"imio.smartweb.vocabulary.NewsItemsFromEntity",
|
16
|
+
"imio.smartweb.vocabulary.EventsFromEntity",
|
17
|
+
]:
|
14
18
|
return super(SmartwebVocabularyView, self).__call__()
|
15
19
|
|
16
20
|
self.request.response.setHeader(
|
@@ -41,7 +41,8 @@ class ISectionEvents(ISection):
|
|
41
41
|
directives.widget(
|
42
42
|
"specific_related_events",
|
43
43
|
TranslatedAjaxSelectWidget,
|
44
|
-
|
44
|
+
vocabulary="imio.smartweb.vocabulary.EventsFromEntity",
|
45
|
+
pattern_options={"multiple": True},
|
45
46
|
)
|
46
47
|
|
47
48
|
directives.widget(
|
@@ -41,7 +41,8 @@ class ISectionNews(ISection):
|
|
41
41
|
directives.widget(
|
42
42
|
"specific_related_newsitems",
|
43
43
|
TranslatedAjaxSelectWidget,
|
44
|
-
|
44
|
+
vocabulary="imio.smartweb.vocabulary.NewsItemsFromEntity",
|
45
|
+
pattern_options={"multiple": True},
|
45
46
|
)
|
46
47
|
|
47
48
|
directives.widget(
|
@@ -25,6 +25,8 @@ class BaseRequestForwarder(Service):
|
|
25
25
|
def reply(self):
|
26
26
|
alsoProvides(self.request, IDisableCSRFProtection)
|
27
27
|
url = "/".join(self.traversal_stack)
|
28
|
+
if self.request_type == "events":
|
29
|
+
url = url.replace("@search", "@events")
|
28
30
|
auth_source_url = f"{self.base_url}/{url}"
|
29
31
|
response = self.forward_request(auth_source_url)
|
30
32
|
response = self.add_smartweb_urls(response)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: imio.smartweb.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.59
|
4
4
|
Summary: Core product for iMio websites
|
5
5
|
Home-page: https://github.com/imio/imio.smartweb.core
|
6
6
|
Author: Christophe Boulanger
|
@@ -191,6 +191,20 @@ Changelog
|
|
191
191
|
=========
|
192
192
|
|
193
193
|
|
194
|
+
1.2.59 (2024-07-10)
|
195
|
+
-------------------
|
196
|
+
|
197
|
+
- SUP-36854 : Fix ajax select2 widget when apply a word filtering and populating specific news and specific events
|
198
|
+
[boulch]
|
199
|
+
|
200
|
+
|
201
|
+
1.2.58 (2024-06-26)
|
202
|
+
-------------------
|
203
|
+
|
204
|
+
- WEB-4116 : Fix error 500 when forward request from e-guichet (got an unexpected keyword argument 'include_items')
|
205
|
+
[boulch]
|
206
|
+
|
207
|
+
|
194
208
|
1.2.57 (2024-06-26)
|
195
209
|
-------------------
|
196
210
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
imio.smartweb.core-1.2.
|
1
|
+
imio.smartweb.core-1.2.59-py3.10-nspkg.pth,sha256=wnCUSUElqssZ5FI3x-9HqwD229HQ-bAuPoDUNJHmMtU,1684
|
2
2
|
imio/smartweb/core/__init__.py,sha256=iwhKnzeBJLKxpRVjvzwiRE63_zNpIBfaKLITauVph-0,24
|
3
3
|
imio/smartweb/core/config.py,sha256=BUgfvh4hCaw0onCYAG4gQI1O4hZ-GzXWEltdHi4YLIs,337
|
4
4
|
imio/smartweb/core/configure.zcml,sha256=PeC4rF--rF6MfVQ0NzggQrZWIl35oPtJdEhvQwGxhhI,1459
|
@@ -32,7 +32,7 @@ imio/smartweb/core/browser/layout.py,sha256=wvo_Q2dYg1Yd8wOdYSfPg29NPESy9ndAGl6z
|
|
32
32
|
imio/smartweb/core/browser/redirect_to_main_react_view.py,sha256=vzJwAet0P2uoMhlOtNjMy02e4LQw9DsHb6mRgBXGOB8,1668
|
33
33
|
imio/smartweb/core/browser/sitemap.py,sha256=voch7Bvchz3NTCm9zUC75sShCLD4KunLKyWA6OtaGmE,5962
|
34
34
|
imio/smartweb/core/browser/utils.py,sha256=ccA2DVA994S3t92_fQeMSFIGfAblE9C1vw78ZFUAJiU,3218
|
35
|
-
imio/smartweb/core/browser/vocabulary.py,sha256=
|
35
|
+
imio/smartweb/core/browser/vocabulary.py,sha256=OBoU4mxGLKtzGD5mtsN-yV7yeMi4HdAQZVI4n1b9Myo,1312
|
36
36
|
imio/smartweb/core/browser/banner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
imio/smartweb/core/browser/banner/configure.zcml,sha256=Z2M7gkRDdmV4zRekUhyuJ-_jvbIbhgTj2Zq674iKvUE,389
|
38
38
|
imio/smartweb/core/browser/banner/settings.py,sha256=jfD705_q8MAHUJbjjcfcPj1f98Rahiz_Mks2Ctx5kMA,947
|
@@ -240,7 +240,7 @@ imio/smartweb/core/contents/sections/contact/view.pt,sha256=CyNoSxzf9kNQdjN2iCp7
|
|
240
240
|
imio/smartweb/core/contents/sections/contact/view.py,sha256=5l5FQLxz-UfFZrttqNsWetuCg-4yT-wIzukIK-QLF6s,1422
|
241
241
|
imio/smartweb/core/contents/sections/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
242
242
|
imio/smartweb/core/contents/sections/events/configure.zcml,sha256=FCDIf6w-2qCPqq0QUodw8-xyAopq7l6O8zoU_uMHNwg,1117
|
243
|
-
imio/smartweb/core/contents/sections/events/content.py,sha256=
|
243
|
+
imio/smartweb/core/contents/sections/events/content.py,sha256=aolTpBgOCKu4EHLQUFjOkFN7YpJId0Wpj_iH5AZ9Vvk,3246
|
244
244
|
imio/smartweb/core/contents/sections/events/macros.pt,sha256=llSq-xstFiOXctseKDwvhVCM7A1_Z1Jq-_cUgNiBe10,1522
|
245
245
|
imio/smartweb/core/contents/sections/events/view.py,sha256=Ylp23caV6ba8y0jjoradXsRnueIABPD4cC7A2maR97c,4528
|
246
246
|
imio/smartweb/core/contents/sections/external_content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -276,7 +276,7 @@ imio/smartweb/core/contents/sections/map/view.pt,sha256=tEEL2ht3KYKJC87_SaT25Ij6
|
|
276
276
|
imio/smartweb/core/contents/sections/map/views.py,sha256=3Z5oFis2NIByJCHh8bjAlLutc4Wp8j6rY6bkvShxEm8,614
|
277
277
|
imio/smartweb/core/contents/sections/news/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
278
|
imio/smartweb/core/contents/sections/news/configure.zcml,sha256=8MOIEeI7Zr_wbNVgiMa_21Ohgv_bkpEi_7gJu6NK380,880
|
279
|
-
imio/smartweb/core/contents/sections/news/content.py,sha256=
|
279
|
+
imio/smartweb/core/contents/sections/news/content.py,sha256=A79d6gfxiqrrL87VPqFz13NYAfTjHbSFNZlpi1kixzE,3261
|
280
280
|
imio/smartweb/core/contents/sections/news/view.py,sha256=e3gwMlyxevvqHJ1CxSMQ8W_q8KECpB8F5inwbofzhQg,4155
|
281
281
|
imio/smartweb/core/contents/sections/postit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
282
282
|
imio/smartweb/core/contents/sections/postit/configure.zcml,sha256=Q0Szs1pmrNP2OiRROpeSQPKLV3tCpyjqZa9vwNFTK9Q,504
|
@@ -375,7 +375,7 @@ imio/smartweb/core/profiles/testing/types/imio.smartweb.NewsView.xml,sha256=6Rpf
|
|
375
375
|
imio/smartweb/core/profiles/uninstall/browserlayer.xml,sha256=K8KnZFW9E6Hwi61Z6XZlXOjUpAKzJR6HjmjoOjFEWrk,128
|
376
376
|
imio/smartweb/core/profiles/validation/contentrules.xml,sha256=QyX3E0ihDOMhaJPrKPRqRiCUvPoghs3fwYOj_eNtbqw,4626
|
377
377
|
imio/smartweb/core/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
378
|
-
imio/smartweb/core/rest/authentic_sources.py,sha256=
|
378
|
+
imio/smartweb/core/rest/authentic_sources.py,sha256=OQy4gbgDh8BmwsMEyftVEWh3Za8v2EUZz6jhX89f9FA,4399
|
379
379
|
imio/smartweb/core/rest/configure.zcml,sha256=3tEU99M_deyoRN0YeIVQmPk7NL88gjYtXZOT8QmSbN4,2891
|
380
380
|
imio/smartweb/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
381
381
|
imio/smartweb/core/tests/test_banner.py,sha256=83Q86ezLMJVwCLxoJddmlE9GKR3h6Qyb-rbqVSFc8a0,7838
|
@@ -727,10 +727,10 @@ imio/smartweb/core/webcomponents/src/utils/Map.jsx,sha256=cYuZykMIaLjr4KiLvmS4aY
|
|
727
727
|
imio/smartweb/core/webcomponents/src/utils/Map.scss,sha256=xXWz0O-JBwSZrzz2XeQdN4nZEOjppU2sVFtlLQOitQ8,77
|
728
728
|
imio/smartweb/core/webcomponents/src/utils/translation.js,sha256=5YDHwdaRNWFWOgyNd7YejoAdcDvnvAENo3Xn0GDT8P8,8941
|
729
729
|
imio/smartweb/core/webcomponents/src/utils/url.js,sha256=iyl_1QXfPBgUn0LEbZYT_zMEEjmj5DMiEz44Z6AKLcg,244
|
730
|
-
imio.smartweb.core-1.2.
|
731
|
-
imio.smartweb.core-1.2.
|
732
|
-
imio.smartweb.core-1.2.
|
733
|
-
imio.smartweb.core-1.2.
|
734
|
-
imio.smartweb.core-1.2.
|
735
|
-
imio.smartweb.core-1.2.
|
736
|
-
imio.smartweb.core-1.2.
|
730
|
+
imio.smartweb.core-1.2.59.dist-info/LICENSE.GPL,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
731
|
+
imio.smartweb.core-1.2.59.dist-info/LICENSE.rst,sha256=RzkMFz6AX3-cHd531zd2YQcXai8RIbjFWTs6m66Y5u4,653
|
732
|
+
imio.smartweb.core-1.2.59.dist-info/METADATA,sha256=KreZYbjIJM3gW2Z1l3_MqOiZYW_zUZgwIavEN-2WvHU,54920
|
733
|
+
imio.smartweb.core-1.2.59.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
734
|
+
imio.smartweb.core-1.2.59.dist-info/namespace_packages.txt,sha256=Pg8AH8t9viMMW1hJbNZvTy_n2jXG2igIYUpon5RA4Js,19
|
735
|
+
imio.smartweb.core-1.2.59.dist-info/top_level.txt,sha256=ZktC0EGzThvMTAin9_q_41rzvvfMT2FYbP8pbhSLMSA,5
|
736
|
+
imio.smartweb.core-1.2.59.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{imio.smartweb.core-1.2.57.dist-info → imio.smartweb.core-1.2.59.dist-info}/namespace_packages.txt
RENAMED
File without changes
|
File without changes
|