plone.theme 4.0.2__tar.gz → 4.0.3__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.2 → plone_theme-4.0.3}/CHANGES.rst +9 -0
- {plone_theme-4.0.2/plone.theme.egg-info → plone_theme-4.0.3}/PKG-INFO +11 -2
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/README.rst +1 -1
- {plone_theme-4.0.2 → plone_theme-4.0.3/plone.theme.egg-info}/PKG-INFO +11 -2
- {plone_theme-4.0.2 → plone_theme-4.0.3}/setup.py +1 -1
- {plone_theme-4.0.2 → plone_theme-4.0.3}/CONTRIBUTING.rst +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/MANIFEST.in +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/README.rst +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/docs/LICENSE.GPL +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/docs/LICENSE.txt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/__init__.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/__init__.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/configure.zcml +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/interfaces.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/layer.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/testing.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/__init__.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/default.pt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/interfaces.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/mytheme.pt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/testBrowserLayerPrecedence.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/test_doctest.py +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone/theme/tests/tests.zcml +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone.theme.egg-info/SOURCES.txt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone.theme.egg-info/dependency_links.txt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone.theme.egg-info/namespace_packages.txt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone.theme.egg-info/not-zip-safe +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone.theme.egg-info/requires.txt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/plone.theme.egg-info/top_level.txt +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/pyproject.toml +0 -0
- {plone_theme-4.0.2 → plone_theme-4.0.3}/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.3
|
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
|
@@ -97,7 +97,7 @@ The other outputs "My Theme".
|
|
97
97
|
|
98
98
|
Before we turn on the skin, we will get the default view.
|
99
99
|
|
100
|
-
>>> from plone.testing.
|
100
|
+
>>> from plone.testing.zope import Browser
|
101
101
|
>>> browser = Browser(layer['app'])
|
102
102
|
|
103
103
|
>>> browser.open(layer['portal'].absolute_url() + '/@@layer-test-view')
|
@@ -138,6 +138,15 @@ Changelog
|
|
138
138
|
|
139
139
|
.. towncrier release notes start
|
140
140
|
|
141
|
+
4.0.3 (2025-01-23)
|
142
|
+
------------------
|
143
|
+
|
144
|
+
Bug fixes:
|
145
|
+
|
146
|
+
|
147
|
+
- Fix DeprecationWarnings. [maurits] (#4090)
|
148
|
+
|
149
|
+
|
141
150
|
4.0.2 (2024-11-30)
|
142
151
|
------------------
|
143
152
|
|
@@ -61,7 +61,7 @@ The other outputs "My Theme".
|
|
61
61
|
|
62
62
|
Before we turn on the skin, we will get the default view.
|
63
63
|
|
64
|
-
>>> from plone.testing.
|
64
|
+
>>> from plone.testing.zope import Browser
|
65
65
|
>>> browser = Browser(layer['app'])
|
66
66
|
|
67
67
|
>>> browser.open(layer['portal'].absolute_url() + '/@@layer-test-view')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: plone.theme
|
3
|
-
Version: 4.0.
|
3
|
+
Version: 4.0.3
|
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
|
@@ -97,7 +97,7 @@ The other outputs "My Theme".
|
|
97
97
|
|
98
98
|
Before we turn on the skin, we will get the default view.
|
99
99
|
|
100
|
-
>>> from plone.testing.
|
100
|
+
>>> from plone.testing.zope import Browser
|
101
101
|
>>> browser = Browser(layer['app'])
|
102
102
|
|
103
103
|
>>> browser.open(layer['portal'].absolute_url() + '/@@layer-test-view')
|
@@ -138,6 +138,15 @@ Changelog
|
|
138
138
|
|
139
139
|
.. towncrier release notes start
|
140
140
|
|
141
|
+
4.0.3 (2025-01-23)
|
142
|
+
------------------
|
143
|
+
|
144
|
+
Bug fixes:
|
145
|
+
|
146
|
+
|
147
|
+
- Fix DeprecationWarnings. [maurits] (#4090)
|
148
|
+
|
149
|
+
|
141
150
|
4.0.2 (2024-11-30)
|
142
151
|
------------------
|
143
152
|
|
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
|