plone.tiles 2.3.1__tar.gz → 3.0.1__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.1 → plone_tiles-3.0.1}/CHANGES.rst +28 -3
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/MANIFEST.in +2 -1
- plone_tiles-3.0.1/PKG-INFO +2008 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/README.rst +0 -8
- plone_tiles-3.0.1/plone/__init__.py +1 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/__init__.py +1 -1
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/absoluteurl.py +18 -20
- plone_tiles-3.0.1/plone/tiles/configure.zcml +184 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/data.py +92 -78
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/directives.py +3 -4
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/directives.rst +4 -4
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/esi.py +43 -42
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/esi.rst +1 -1
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/fieldtypeconverters.py +8 -10
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/interfaces.py +41 -46
- plone_tiles-3.0.1/plone/tiles/meta.py +162 -0
- plone_tiles-3.0.1/plone/tiles/meta.zcml +16 -0
- plone_tiles-3.0.1/plone/tiles/test.pt +1 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/testing.py +11 -11
- plone_tiles-3.0.1/plone/tiles/tests/__init__.py +0 -0
- plone_tiles-3.0.1/plone/tiles/tests/test_data.py +83 -0
- plone_tiles-3.0.1/plone/tiles/tests/test_doctests.py +30 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/tile.py +24 -22
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/tiles.rst +11 -2
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/type.py +4 -9
- plone_tiles-3.0.1/plone.tiles.egg-info/PKG-INFO +2008 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/requires.txt +3 -2
- plone_tiles-3.0.1/pyproject.toml +168 -0
- plone_tiles-3.0.1/setup.cfg +4 -0
- plone_tiles-3.0.1/setup.py +75 -0
- plone.tiles-2.3.1/PKG-INFO +0 -1953
- plone.tiles-2.3.1/plone/__init__.py +0 -2
- plone.tiles-2.3.1/plone/tiles/configure.zcml +0 -163
- plone.tiles-2.3.1/plone/tiles/meta.py +0 -151
- plone.tiles-2.3.1/plone/tiles/meta.zcml +0 -15
- plone.tiles-2.3.1/plone/tiles/test.pt +0 -1
- plone.tiles-2.3.1/plone/tiles/tests/__init__.py +0 -1
- plone.tiles-2.3.1/plone/tiles/tests/test_data.py +0 -112
- plone.tiles-2.3.1/plone/tiles/tests/test_doctests.py +0 -39
- plone.tiles-2.3.1/plone.tiles.egg-info/PKG-INFO +0 -1953
- plone.tiles-2.3.1/pyproject.toml +0 -20
- plone.tiles-2.3.1/setup.cfg +0 -12
- plone.tiles-2.3.1/setup.py +0 -73
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/CONTRIBUTING.rst +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/LICENSE.GPL +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/LICENSE.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/data.rst +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/SOURCES.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/dependency_links.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/namespace_packages.txt +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/not-zip-safe +0 -0
- {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/top_level.txt +0 -0
@@ -8,6 +8,31 @@ Changelog
|
|
8
8
|
|
9
9
|
.. towncrier release notes start
|
10
10
|
|
11
|
+
3.0.1 (2025-06-19)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
Bug fixes:
|
15
|
+
|
16
|
+
|
17
|
+
- Implement `PersistentTile.absolute_url()` to fix canonical header introduced in `plone.namedfile`. @petschki
|
18
|
+
|
19
|
+
|
20
|
+
3.0.0 (2025-06-05)
|
21
|
+
------------------
|
22
|
+
|
23
|
+
Breaking changes:
|
24
|
+
|
25
|
+
|
26
|
+
- Remove Python 2 and Plone 5.2 support. @petschki
|
27
|
+
|
28
|
+
|
29
|
+
Internal:
|
30
|
+
|
31
|
+
|
32
|
+
- Update configuration files.
|
33
|
+
[plone devs]
|
34
|
+
|
35
|
+
|
11
36
|
2.3.1 (2021-10-07)
|
12
37
|
------------------
|
13
38
|
|
@@ -116,8 +141,8 @@ Breaking changes:
|
|
116
141
|
it gets removed after rendering when request is not CSRF-authorized.
|
117
142
|
[datakurre]
|
118
143
|
|
119
|
-
- Generic ESI helper check now
|
120
|
-
the tile according to the registered view permission
|
144
|
+
- Generic ESI helper check now that the request is authorized to render
|
145
|
+
the tile according to the registered view permission to the tile.
|
121
146
|
[datakurre]
|
122
147
|
|
123
148
|
- Transactions of requests to ESI helper views are automatically aborted,
|
@@ -312,7 +337,7 @@ Bug fixes:
|
|
312
337
|
- Use adapters for the Zope Publisher type casting
|
313
338
|
[dukebody]
|
314
339
|
|
315
|
-
-
|
340
|
+
- Conditionally support z3c.relationfield's RelationChoice fields
|
316
341
|
[dukebody]
|
317
342
|
|
318
343
|
- Ignore type casting for fields without fixed type, like zope.schema.Choice
|