plone.tiles 2.3.0__tar.gz → 3.0.0__tar.gz
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.tiles-2.3.0 → plone_tiles-3.0.0}/CHANGES.rst +29 -3
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/MANIFEST.in +2 -1
- plone_tiles-3.0.0/PKG-INFO +1990 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/README.rst +0 -8
- plone_tiles-3.0.0/plone/__init__.py +1 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/__init__.py +1 -1
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/absoluteurl.py +18 -20
- plone_tiles-3.0.0/plone/tiles/configure.zcml +184 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/data.py +92 -78
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/directives.py +3 -4
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/directives.rst +4 -4
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/esi.py +43 -42
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/esi.rst +1 -1
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/fieldtypeconverters.py +8 -10
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/interfaces.py +41 -46
- plone_tiles-3.0.0/plone/tiles/meta.py +162 -0
- plone_tiles-3.0.0/plone/tiles/meta.zcml +16 -0
- plone_tiles-3.0.0/plone/tiles/test.pt +1 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/testing.py +11 -11
- plone_tiles-3.0.0/plone/tiles/tests/__init__.py +0 -0
- plone_tiles-3.0.0/plone/tiles/tests/test_data.py +83 -0
- plone_tiles-3.0.0/plone/tiles/tests/test_doctests.py +30 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/tile.py +19 -22
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/tiles.rst +2 -2
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/type.py +4 -9
- plone_tiles-3.0.0/plone.tiles.egg-info/PKG-INFO +1990 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone.tiles.egg-info/requires.txt +3 -2
- plone_tiles-3.0.0/pyproject.toml +168 -0
- plone_tiles-3.0.0/setup.cfg +4 -0
- plone_tiles-3.0.0/setup.py +75 -0
- plone.tiles-2.3.0/PKG-INFO +0 -1941
- plone.tiles-2.3.0/plone/__init__.py +0 -2
- plone.tiles-2.3.0/plone/tiles/configure.zcml +0 -163
- plone.tiles-2.3.0/plone/tiles/meta.py +0 -151
- plone.tiles-2.3.0/plone/tiles/meta.zcml +0 -15
- plone.tiles-2.3.0/plone/tiles/test.pt +0 -1
- plone.tiles-2.3.0/plone/tiles/tests/__init__.py +0 -1
- plone.tiles-2.3.0/plone/tiles/tests/test_data.py +0 -112
- plone.tiles-2.3.0/plone/tiles/tests/test_doctests.py +0 -39
- plone.tiles-2.3.0/plone.tiles.egg-info/PKG-INFO +0 -1941
- plone.tiles-2.3.0/pyproject.toml +0 -20
- plone.tiles-2.3.0/setup.cfg +0 -12
- plone.tiles-2.3.0/setup.py +0 -71
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/CONTRIBUTING.rst +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/LICENSE.GPL +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/LICENSE.txt +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone/tiles/data.rst +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone.tiles.egg-info/SOURCES.txt +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone.tiles.egg-info/dependency_links.txt +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone.tiles.egg-info/namespace_packages.txt +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone.tiles.egg-info/not-zip-safe +0 -0
- {plone.tiles-2.3.0 → plone_tiles-3.0.0}/plone.tiles.egg-info/top_level.txt +0 -0
@@ -8,6 +8,32 @@ Changelog
|
|
8
8
|
|
9
9
|
.. towncrier release notes start
|
10
10
|
|
11
|
+
3.0.0 (2025-06-05)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
Breaking changes:
|
15
|
+
|
16
|
+
|
17
|
+
- Remove Python 2 and Plone 5.2 support. @petschki
|
18
|
+
|
19
|
+
|
20
|
+
Internal:
|
21
|
+
|
22
|
+
|
23
|
+
- Update configuration files.
|
24
|
+
[plone devs]
|
25
|
+
|
26
|
+
|
27
|
+
2.3.1 (2021-10-07)
|
28
|
+
------------------
|
29
|
+
|
30
|
+
Bug fixes:
|
31
|
+
|
32
|
+
|
33
|
+
- Fix incorrectly set condition for plone.protect.
|
34
|
+
[thet] (#33)
|
35
|
+
|
36
|
+
|
11
37
|
2.3.0 (2020-09-07)
|
12
38
|
------------------
|
13
39
|
|
@@ -106,8 +132,8 @@ Breaking changes:
|
|
106
132
|
it gets removed after rendering when request is not CSRF-authorized.
|
107
133
|
[datakurre]
|
108
134
|
|
109
|
-
- Generic ESI helper check now
|
110
|
-
the tile according to the registered view permission
|
135
|
+
- Generic ESI helper check now that the request is authorized to render
|
136
|
+
the tile according to the registered view permission to the tile.
|
111
137
|
[datakurre]
|
112
138
|
|
113
139
|
- Transactions of requests to ESI helper views are automatically aborted,
|
@@ -302,7 +328,7 @@ Bug fixes:
|
|
302
328
|
- Use adapters for the Zope Publisher type casting
|
303
329
|
[dukebody]
|
304
330
|
|
305
|
-
-
|
331
|
+
- Conditionally support z3c.relationfield's RelationChoice fields
|
306
332
|
[dukebody]
|
307
333
|
|
308
334
|
- Ignore type casting for fields without fixed type, like zope.schema.Choice
|