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.
Files changed (52) hide show
  1. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/CHANGES.rst +28 -3
  2. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/MANIFEST.in +2 -1
  3. plone_tiles-3.0.1/PKG-INFO +2008 -0
  4. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/README.rst +0 -8
  5. plone_tiles-3.0.1/plone/__init__.py +1 -0
  6. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/__init__.py +1 -1
  7. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/absoluteurl.py +18 -20
  8. plone_tiles-3.0.1/plone/tiles/configure.zcml +184 -0
  9. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/data.py +92 -78
  10. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/directives.py +3 -4
  11. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/directives.rst +4 -4
  12. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/esi.py +43 -42
  13. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/esi.rst +1 -1
  14. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/fieldtypeconverters.py +8 -10
  15. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/interfaces.py +41 -46
  16. plone_tiles-3.0.1/plone/tiles/meta.py +162 -0
  17. plone_tiles-3.0.1/plone/tiles/meta.zcml +16 -0
  18. plone_tiles-3.0.1/plone/tiles/test.pt +1 -0
  19. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/testing.py +11 -11
  20. plone_tiles-3.0.1/plone/tiles/tests/__init__.py +0 -0
  21. plone_tiles-3.0.1/plone/tiles/tests/test_data.py +83 -0
  22. plone_tiles-3.0.1/plone/tiles/tests/test_doctests.py +30 -0
  23. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/tile.py +24 -22
  24. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/tiles.rst +11 -2
  25. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/type.py +4 -9
  26. plone_tiles-3.0.1/plone.tiles.egg-info/PKG-INFO +2008 -0
  27. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/requires.txt +3 -2
  28. plone_tiles-3.0.1/pyproject.toml +168 -0
  29. plone_tiles-3.0.1/setup.cfg +4 -0
  30. plone_tiles-3.0.1/setup.py +75 -0
  31. plone.tiles-2.3.1/PKG-INFO +0 -1953
  32. plone.tiles-2.3.1/plone/__init__.py +0 -2
  33. plone.tiles-2.3.1/plone/tiles/configure.zcml +0 -163
  34. plone.tiles-2.3.1/plone/tiles/meta.py +0 -151
  35. plone.tiles-2.3.1/plone/tiles/meta.zcml +0 -15
  36. plone.tiles-2.3.1/plone/tiles/test.pt +0 -1
  37. plone.tiles-2.3.1/plone/tiles/tests/__init__.py +0 -1
  38. plone.tiles-2.3.1/plone/tiles/tests/test_data.py +0 -112
  39. plone.tiles-2.3.1/plone/tiles/tests/test_doctests.py +0 -39
  40. plone.tiles-2.3.1/plone.tiles.egg-info/PKG-INFO +0 -1953
  41. plone.tiles-2.3.1/pyproject.toml +0 -20
  42. plone.tiles-2.3.1/setup.cfg +0 -12
  43. plone.tiles-2.3.1/setup.py +0 -73
  44. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/CONTRIBUTING.rst +0 -0
  45. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/LICENSE.GPL +0 -0
  46. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/LICENSE.txt +0 -0
  47. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone/tiles/data.rst +0 -0
  48. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/SOURCES.txt +0 -0
  49. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/dependency_links.txt +0 -0
  50. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/namespace_packages.txt +0 -0
  51. {plone.tiles-2.3.1 → plone_tiles-3.0.1}/plone.tiles.egg-info/not-zip-safe +0 -0
  52. {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 taht the request is authorized to render
120
- the tile according to the registered view permission fo the tile.
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
- - Conditionaly support z3c.relationfield's RelationChoice fields
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
@@ -1,6 +1,7 @@
1
1
  recursive-include plone *
2
2
  include setup.py setup.cfg *.rst LICENSE.GPL LICENSE.txt
3
- exclude requirements.txt buildout.cfg test-*.cfg
3
+ exclude requirements.txt
4
+ exclude .coveragerc
4
5
  global-exclude *.pyc
5
6
  include pyproject.toml
6
7
  recursive-exclude news *