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