plone.portlet.collection 4.0.3__py3-none-any.whl → 4.0.4__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.
- plone/portlet/collection/collection.py +1 -1
- plone.portlet.collection-4.0.4-py3.13-nspkg.pth +2 -0
- {plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/METADATA +22 -6
- {plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/RECORD +7 -7
- {plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/WHEEL +1 -1
- plone.portlet.collection-4.0.3-py3.11-nspkg.pth +0 -3
- {plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/namespace_packages.txt +0 -0
- {plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@ from ComputedAttribute import ComputedAttribute
|
|
2
2
|
from plone.app.portlets.browser import formhelper
|
3
3
|
from plone.app.portlets.portlets import base
|
4
4
|
from plone.app.uuid.utils import uuidToObject
|
5
|
-
from plone.app.z3cform.
|
5
|
+
from plone.app.z3cform.widgets.relateditems import RelatedItemsFieldWidget
|
6
6
|
from plone.autoform.directives import widget
|
7
7
|
from plone.base.defaultpage import is_default_page
|
8
8
|
from plone.base.interfaces.controlpanel import ISiteSchema
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone',));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('plone', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone', types.ModuleType('plone'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
2
|
+
import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone', 'portlet'));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('plone.portlet', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone.portlet', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone.portlet', types.ModuleType('plone.portlet'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['plone'], 'portlet', m)
|
{plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: plone.portlet.collection
|
3
|
-
Version: 4.0.
|
3
|
+
Version: 4.0.4
|
4
4
|
Summary: A portlet that fetches results from a collection
|
5
5
|
Home-page: https://pypi.org/project/plone.portlet.collection/
|
6
6
|
Author: Plone Foundation
|
@@ -22,7 +22,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
23
23
|
Requires-Python: >=3.8
|
24
24
|
Requires-Dist: setuptools
|
25
|
-
Requires-Dist: ExtensionClass
|
26
25
|
Requires-Dist: plone.base
|
27
26
|
Requires-Dist: plone.memoize
|
28
27
|
Requires-Dist: plone.portlets
|
@@ -36,11 +35,12 @@ Requires-Dist: plone.app.z3cform
|
|
36
35
|
Requires-Dist: plone.autoform
|
37
36
|
Requires-Dist: plone.i18n
|
38
37
|
Requires-Dist: plone.registry
|
38
|
+
Requires-Dist: Zope
|
39
39
|
Provides-Extra: test
|
40
|
-
Requires-Dist: lxml
|
41
|
-
Requires-Dist: plone.testing
|
42
|
-
Requires-Dist: plone.app.testing
|
43
|
-
Requires-Dist: plone.app.contenttypes[test]
|
40
|
+
Requires-Dist: lxml; extra == "test"
|
41
|
+
Requires-Dist: plone.testing; extra == "test"
|
42
|
+
Requires-Dist: plone.app.testing; extra == "test"
|
43
|
+
Requires-Dist: plone.app.contenttypes[test]; extra == "test"
|
44
44
|
|
45
45
|
Introduction
|
46
46
|
============
|
@@ -57,6 +57,22 @@ Changelog
|
|
57
57
|
|
58
58
|
.. towncrier release notes start
|
59
59
|
|
60
|
+
4.0.4 (2025-01-23)
|
61
|
+
------------------
|
62
|
+
|
63
|
+
Bug fixes:
|
64
|
+
|
65
|
+
|
66
|
+
- Fix DeprecationWarnings. [maurits] (#4090)
|
67
|
+
|
68
|
+
|
69
|
+
Internal:
|
70
|
+
|
71
|
+
|
72
|
+
- Update configuration files.
|
73
|
+
[plone devs] (6e36bcc4)
|
74
|
+
|
75
|
+
|
60
76
|
4.0.3 (2023-06-22)
|
61
77
|
------------------
|
62
78
|
|
{plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/RECORD
RENAMED
@@ -1,7 +1,7 @@
|
|
1
|
-
plone.portlet.collection-4.0.
|
1
|
+
plone.portlet.collection-4.0.4-py3.13-nspkg.pth,sha256=qq4hAgreVXnlbNUTxEs5CknYcTmiWpZPnNgbcgkUU00,1016
|
2
2
|
plone/portlet/collection/__init__.py,sha256=AsIAzr6zWnHPtFi3Mc3VWEpRan8WmpyUN5mIOO7DCdw,395
|
3
3
|
plone/portlet/collection/collection.pt,sha256=vSiGkk5CrZiAqEjPt0OQiXBaIll2LqqmRYil1smpaiI,3986
|
4
|
-
plone/portlet/collection/collection.py,sha256=
|
4
|
+
plone/portlet/collection/collection.py,sha256=DUG2gbwGrufUFrAxrqzyjLqKbdkLwxBnm5hKCwfhjVE,10144
|
5
5
|
plone/portlet/collection/configure.zcml,sha256=hCCtjVQ9kJFu_0A5EGHJPx0K1ZpOFdmCQ3MKL7X-1Kc,1141
|
6
6
|
plone/portlet/collection/testing.py,sha256=-N854wz9bQlZ4d5qctkgGqhdTzpsayfeTyEBHh0pqjY,1501
|
7
7
|
plone/portlet/collection/profiles/default/metadata.xml,sha256=c7SrYDntD4P95ZYT1Ak0oXCzXfSxM3xz2JGHgJwMzSc,187
|
@@ -10,8 +10,8 @@ plone/portlet/collection/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
10
10
|
plone/portlet/collection/tests/functional.txt,sha256=MM40xDPziXd5UelsLPHRDvD_5kiZkEjy48REciXQhTw,5876
|
11
11
|
plone/portlet/collection/tests/test_functional_doctest.py,sha256=xJM6ae6_pHdEvalMigE6pZ1psUe_ZaZIeP_2MIBKfAM,947
|
12
12
|
plone/portlet/collection/tests/test_portlet_collection.py,sha256=DMRUEOPl-3IGELjiLAtrSsNEi61RyHP6K2e4Mx15MxA,16311
|
13
|
-
plone.portlet.collection-4.0.
|
14
|
-
plone.portlet.collection-4.0.
|
15
|
-
plone.portlet.collection-4.0.
|
16
|
-
plone.portlet.collection-4.0.
|
17
|
-
plone.portlet.collection-4.0.
|
13
|
+
plone.portlet.collection-4.0.4.dist-info/METADATA,sha256=odzT7uBXJQ6uka5oksPjRHSdRV_ngGiiGavBJOSmpKw,11359
|
14
|
+
plone.portlet.collection-4.0.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
15
|
+
plone.portlet.collection-4.0.4.dist-info/namespace_packages.txt,sha256=EkWaD5YnUkFD6PsA2Jfm4YGVygbvoud8ntS7-EfOD2Q,20
|
16
|
+
plone.portlet.collection-4.0.4.dist-info/top_level.txt,sha256=56bqrkG-vurYD0l15D71FPiDL7L3QqkfRWkYkdyS7WM,6
|
17
|
+
plone.portlet.collection-4.0.4.dist-info/RECORD,,
|
@@ -1,3 +0,0 @@
|
|
1
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('plone', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone', types.ModuleType('plone'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
2
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('plone', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone', types.ModuleType('plone'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
3
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone', 'portlet'));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('plone.portlet', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone.portlet', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone.portlet', types.ModuleType('plone.portlet'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['plone'], 'portlet', m)
|
File without changes
|
{plone.portlet.collection-4.0.3.dist-info → plone.portlet.collection-4.0.4.dist-info}/top_level.txt
RENAMED
File without changes
|