plone.theme 4.0.1__tar.gz → 4.0.2__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.theme-4.0.1 → plone_theme-4.0.2}/CHANGES.rst +10 -0
- {plone.theme-4.0.1/plone.theme.egg-info → plone_theme-4.0.2}/PKG-INFO +11 -1
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/testBrowserLayerPrecedence.py +15 -8
- {plone.theme-4.0.1 → plone_theme-4.0.2/plone.theme.egg-info}/PKG-INFO +11 -1
- {plone.theme-4.0.1 → plone_theme-4.0.2}/setup.py +1 -1
- {plone.theme-4.0.1 → plone_theme-4.0.2}/CONTRIBUTING.rst +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/MANIFEST.in +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/README.rst +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/docs/LICENSE.GPL +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/docs/LICENSE.txt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/__init__.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/README.rst +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/__init__.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/configure.zcml +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/interfaces.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/layer.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/testing.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/__init__.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/default.pt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/interfaces.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/mytheme.pt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/test_doctest.py +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone/theme/tests/tests.zcml +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/SOURCES.txt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/dependency_links.txt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/namespace_packages.txt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/not-zip-safe +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/requires.txt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/plone.theme.egg-info/top_level.txt +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/pyproject.toml +0 -0
- {plone.theme-4.0.1 → plone_theme-4.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: plone.theme
|
3
|
-
Version: 4.0.
|
3
|
+
Version: 4.0.2
|
4
4
|
Summary: Tools for managing themes in CMF and Plone sites
|
5
5
|
Home-page: https://pypi.org/project/plone.theme
|
6
6
|
Author: Plone Foundation
|
@@ -138,6 +138,16 @@ Changelog
|
|
138
138
|
|
139
139
|
.. towncrier release notes start
|
140
140
|
|
141
|
+
4.0.2 (2024-11-30)
|
142
|
+
------------------
|
143
|
+
|
144
|
+
Bug fixes:
|
145
|
+
|
146
|
+
|
147
|
+
- Fix removed `unittest.makeSuite` in python 3.13.
|
148
|
+
[petschki] (#27)
|
149
|
+
|
150
|
+
|
141
151
|
4.0.1 (2023-10-07)
|
142
152
|
------------------
|
143
153
|
|
@@ -101,11 +101,18 @@ class TestPrecedenceWithNoThemeLayer(LayerPrecedenceTestCase):
|
|
101
101
|
|
102
102
|
|
103
103
|
def test_suite():
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
104
|
+
import unittest
|
105
|
+
|
106
|
+
return unittest.TestSuite(
|
107
|
+
(
|
108
|
+
unittest.defaultTestLoader.loadTestsFromTestCase(
|
109
|
+
TestPrecedenceWithAdditiveLayerExtendingInterface
|
110
|
+
),
|
111
|
+
unittest.defaultTestLoader.loadTestsFromTestCase(
|
112
|
+
TestPrecedenceWithAdditiveLayerExtendingDefault
|
113
|
+
),
|
114
|
+
unittest.defaultTestLoader.loadTestsFromTestCase(
|
115
|
+
TestPrecedenceWithNoThemeLayer
|
116
|
+
),
|
117
|
+
)
|
118
|
+
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: plone.theme
|
3
|
-
Version: 4.0.
|
3
|
+
Version: 4.0.2
|
4
4
|
Summary: Tools for managing themes in CMF and Plone sites
|
5
5
|
Home-page: https://pypi.org/project/plone.theme
|
6
6
|
Author: Plone Foundation
|
@@ -138,6 +138,16 @@ Changelog
|
|
138
138
|
|
139
139
|
.. towncrier release notes start
|
140
140
|
|
141
|
+
4.0.2 (2024-11-30)
|
142
|
+
------------------
|
143
|
+
|
144
|
+
Bug fixes:
|
145
|
+
|
146
|
+
|
147
|
+
- Fix removed `unittest.makeSuite` in python 3.13.
|
148
|
+
[petschki] (#27)
|
149
|
+
|
150
|
+
|
141
151
|
4.0.1 (2023-10-07)
|
142
152
|
------------------
|
143
153
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|