plone.app.customerize 2.0.0__py3-none-any.whl → 2.0.2__py3-none-any.whl
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/app/customerize/customize.pt +6 -5
- plone/app/customerize/registrations.pt +4 -3
- plone/app/customerize/tests/testBrowserLayers.txt +1 -1
- plone/app/customerize/tests/testCustomizeView.txt +1 -1
- plone.app.customerize-2.0.2-py3.13-nspkg.pth +2 -0
- {plone.app.customerize-2.0.0.dist-info → plone.app.customerize-2.0.2.dist-info}/METADATA +29 -19
- {plone.app.customerize-2.0.0.dist-info → plone.app.customerize-2.0.2.dist-info}/RECORD +10 -10
- {plone.app.customerize-2.0.0.dist-info → plone.app.customerize-2.0.2.dist-info}/WHEEL +1 -1
- plone.app.customerize-2.0.0-py3.11-nspkg.pth +0 -3
- {plone.app.customerize-2.0.0.dist-info → plone.app.customerize-2.0.2.dist-info}/namespace_packages.txt +0 -0
- {plone.app.customerize-2.0.0.dist-info → plone.app.customerize-2.0.2.dist-info}/top_level.txt +0 -0
@@ -35,23 +35,23 @@
|
|
35
35
|
<dl tal:define="
|
36
36
|
info view/getTemplateViewRegistrationInfo;
|
37
37
|
">
|
38
|
-
<dt>
|
38
|
+
<dt i18n:ignore="true">
|
39
39
|
view name
|
40
40
|
</dt>
|
41
41
|
<dd tal:content="info/viewname"></dd>
|
42
|
-
<dt>
|
42
|
+
<dt i18n:ignore="true">
|
43
43
|
registered for interface
|
44
44
|
</dt>
|
45
45
|
<dd tal:content="info/for"></dd>
|
46
|
-
<dt>
|
46
|
+
<dt i18n:ignore="true">
|
47
47
|
registered for request type
|
48
48
|
</dt>
|
49
49
|
<dd tal:content="info/type"></dd>
|
50
|
-
<dt>
|
50
|
+
<dt i18n:ignore="true">
|
51
51
|
template file
|
52
52
|
</dt>
|
53
53
|
<dd tal:content="info/zptfile"></dd>
|
54
|
-
<dt>
|
54
|
+
<dt i18n:ignore="true">
|
55
55
|
zcml file
|
56
56
|
</dt>
|
57
57
|
<dd tal:content="info/zcmlfile"></dd>
|
@@ -78,6 +78,7 @@
|
|
78
78
|
<input name=""
|
79
79
|
type="submit"
|
80
80
|
value="Customize"
|
81
|
+
i18n:attributes="value"
|
81
82
|
/>
|
82
83
|
</form>
|
83
84
|
|
@@ -1,7 +1,9 @@
|
|
1
1
|
<h1 tal:replace="structure context/manage_page_header"></h1>
|
2
2
|
<h1 tal:replace="structure context/manage_tabs"></h1>
|
3
3
|
|
4
|
-
<main class="container-fluid"
|
4
|
+
<main class="container-fluid"
|
5
|
+
i18n:ignore="true"
|
6
|
+
>
|
5
7
|
|
6
8
|
<style type="text/css">
|
7
9
|
dd span.type {
|
@@ -33,8 +35,7 @@
|
|
33
35
|
sorted by interface. Click one of the links to see the contents
|
34
36
|
of the view template and possibly customize it. Views that already
|
35
37
|
have been customized are
|
36
|
-
<span class="customized">highlighted like
|
37
|
-
this</span>.
|
38
|
+
<span class="customized">highlighted like this</span>.
|
38
39
|
</p>
|
39
40
|
|
40
41
|
<article tal:repeat="iface python:view.getTemplateViewRegistrations(mangle=False)">
|
@@ -15,7 +15,7 @@ product is installed, we cannot view the view, though:
|
|
15
15
|
>>> from plone.app.testing import SITE_OWNER_NAME, SITE_OWNER_PASSWORD
|
16
16
|
>>> portal = layer['portal']
|
17
17
|
|
18
|
-
>>> from plone.testing.
|
18
|
+
>>> from plone.testing.zope import Browser
|
19
19
|
>>> browser = Browser(layer['app'])
|
20
20
|
>>> browser.handleErrors = False
|
21
21
|
>>> browser.addHeader('Authorization', 'Basic %s:%s' % (
|
@@ -4,7 +4,7 @@ view via the ZMI:
|
|
4
4
|
>>> import transaction
|
5
5
|
>>> portal = layer['portal']
|
6
6
|
|
7
|
-
>>> from plone.testing.
|
7
|
+
>>> from plone.testing.zope import Browser
|
8
8
|
>>> from plone.app.testing import SITE_OWNER_NAME, SITE_OWNER_PASSWORD
|
9
9
|
>>> browser = Browser(layer['app'])
|
10
10
|
>>> browser.addHeader('Authorization', 'Basic %s:%s' % (
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone',));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('plone', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone', types.ModuleType('plone'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
2
|
+
import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone', 'app'));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('plone.app', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone.app', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone.app', types.ModuleType('plone.app'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['plone'], 'app', m)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: plone.app.customerize
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.2
|
4
4
|
Summary: Integrate five.customerize into Plone.
|
5
5
|
Home-page: https://pypi.org/project/plone.app.customerize/
|
6
6
|
Author: Plone Foundation
|
@@ -11,41 +11,32 @@ Platform: Any
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
12
12
|
Classifier: Environment :: Web Environment
|
13
13
|
Classifier: Framework :: Plone
|
14
|
-
Classifier: Framework :: Plone :: 5.0
|
15
|
-
Classifier: Framework :: Plone :: 5.1
|
16
|
-
Classifier: Framework :: Plone :: 5.2
|
17
14
|
Classifier: Framework :: Plone :: 6.0
|
18
15
|
Classifier: Framework :: Plone :: Core
|
19
|
-
Classifier: Framework :: Zope2
|
20
|
-
Classifier: Framework :: Zope :: 4
|
21
16
|
Classifier: Framework :: Zope :: 5
|
22
17
|
Classifier: Intended Audience :: Other Audience
|
23
18
|
Classifier: Intended Audience :: System Administrators
|
24
19
|
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
|
25
20
|
Classifier: Operating System :: OS Independent
|
26
21
|
Classifier: Programming Language :: Python
|
27
|
-
Classifier: Programming Language :: Python :: 2.7
|
28
|
-
Classifier: Programming Language :: Python :: 3.6
|
29
|
-
Classifier: Programming Language :: Python :: 3.7
|
30
22
|
Classifier: Programming Language :: Python :: 3.8
|
31
23
|
Classifier: Programming Language :: Python :: 3.9
|
24
|
+
Classifier: Programming Language :: Python :: 3.10
|
25
|
+
Classifier: Programming Language :: Python :: 3.11
|
32
26
|
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
33
27
|
Requires-Python: >=3.8
|
28
|
+
Description-Content-Type: text/x-rst
|
34
29
|
Requires-Dist: setuptools
|
35
30
|
Requires-Dist: five.customerize
|
36
31
|
Requires-Dist: plone.browserlayer
|
37
32
|
Requires-Dist: plone.portlets
|
38
|
-
Requires-Dist: zope.component
|
39
|
-
Requires-Dist: zope.interface
|
40
|
-
Requires-Dist: zope.publisher
|
41
|
-
Requires-Dist: zope.viewlet
|
42
33
|
Requires-Dist: Products.CMFCore
|
43
|
-
Requires-Dist:
|
34
|
+
Requires-Dist: Zope
|
44
35
|
Provides-Extra: test
|
45
|
-
Requires-Dist: Products.GenericSetup
|
46
|
-
Requires-Dist: plone.app.layout
|
47
|
-
Requires-Dist: plone.app.testing
|
48
|
-
Requires-Dist: plone.testing
|
36
|
+
Requires-Dist: Products.GenericSetup; extra == "test"
|
37
|
+
Requires-Dist: plone.app.layout; extra == "test"
|
38
|
+
Requires-Dist: plone.app.testing; extra == "test"
|
39
|
+
Requires-Dist: plone.testing; extra == "test"
|
49
40
|
|
50
41
|
Overview
|
51
42
|
========
|
@@ -70,6 +61,25 @@ Changelog
|
|
70
61
|
|
71
62
|
.. towncrier release notes start
|
72
63
|
|
64
|
+
2.0.2 (2025-01-24)
|
65
|
+
------------------
|
66
|
+
|
67
|
+
Bug fixes:
|
68
|
+
|
69
|
+
|
70
|
+
- Fix DeprecationWarnings. [maurits] (#4090)
|
71
|
+
|
72
|
+
|
73
|
+
2.0.1 (2023-10-07)
|
74
|
+
------------------
|
75
|
+
|
76
|
+
Internal:
|
77
|
+
|
78
|
+
|
79
|
+
- Update configuration files.
|
80
|
+
[plone devs] (cfffba8c)
|
81
|
+
|
82
|
+
|
73
83
|
2.0.0 (2023-04-15)
|
74
84
|
------------------
|
75
85
|
|
@@ -229,7 +239,7 @@ Fixes:
|
|
229
239
|
- Fixed Chameleon incompatibility.
|
230
240
|
[swampmonkey]
|
231
241
|
|
232
|
-
- Fix #11409 by storing the customized view name for future
|
242
|
+
- Fix #11409 by storing the customized view name for future reuse
|
233
243
|
[kiorky]
|
234
244
|
|
235
245
|
|
@@ -1,13 +1,13 @@
|
|
1
|
-
plone.app.customerize-2.0.
|
1
|
+
plone.app.customerize-2.0.2-py3.13-nspkg.pth,sha256=IFudncLkuDiEne6uBLBlcfD1XCMF1N9Txbb6wObfww4,992
|
2
2
|
plone/app/customerize/README.txt,sha256=7tMNqB1-W4ShSa9-aAT6H6wUEP0O0Cbuq1ud5IG48Ec,355
|
3
3
|
plone/app/customerize/TODO.txt,sha256=Q9M292jC1ziYzhC30jL1X1cOivQO6vMbEnkicRY9i6o,271
|
4
4
|
plone/app/customerize/__init__.py,sha256=8pJhmmFoJxxl2jKxrGy29eqZmTggMxgoQ0oJU3SZP-4,337
|
5
5
|
plone/app/customerize/browser.py,sha256=ZB_SKqMxqv0WlmejWWe4pnSdMlONqr-3u4GDY611Beo,2759
|
6
6
|
plone/app/customerize/configure.zcml,sha256=oqGGkV8WZp2z3Nd-jbbTRsyZ0pOJasERscT0z3nbOV4,798
|
7
|
-
plone/app/customerize/customize.pt,sha256=
|
7
|
+
plone/app/customerize/customize.pt,sha256=LK3pV1YJtDYHqu276Ac6mWUABraNOSg9AhyATYkeU1M,2002
|
8
8
|
plone/app/customerize/dependencies.zcml,sha256=-pvIcq7sJMGmJpvpbYKmLutBUl_x0oUNoaqy31zGpF4,166
|
9
9
|
plone/app/customerize/registration.py,sha256=ivI6qi1uT612__pNVshSUOCBbkVTXQcNVJmbap8LB4o,6700
|
10
|
-
plone/app/customerize/registrations.pt,sha256
|
10
|
+
plone/app/customerize/registrations.pt,sha256=-WD6vDf3PgfdsuLcwoNNfFMBfk4iSaPJDtsfi0qM0Hg,2223
|
11
11
|
plone/app/customerize/testing.py,sha256=reBhXSFGSjn6P5HTQePYwdA060izCosPBD1gJwD9UjA,939
|
12
12
|
plone/app/customerize/tool.gif,sha256=ZIsiQ7yRlMyB5mVIBXTLeKMTkaNZ_AF11h-cBXziwI0,166
|
13
13
|
plone/app/customerize/tool.py,sha256=jTDvPl-Z9Fofw9ljiMxvwcgDh3r8qX9aPCWLIyvKBog,1048
|
@@ -16,14 +16,14 @@ plone/app/customerize/tests/duplicate_viewlet.zcml,sha256=JC9HxjR9FPGtRMz0SdUoyF
|
|
16
16
|
plone/app/customerize/tests/interfaces.py,sha256=WmmnmESWPcYEsZx69KarzGkTXVqU-XPT9If7-6Vhu6k,225
|
17
17
|
plone/app/customerize/tests/local.pt,sha256=s3jNs7lgYGQY8i6mgJ8eVZq9OgbHRSma0rTem6nXMh0,133
|
18
18
|
plone/app/customerize/tests/standard.pt,sha256=eqWYkgOYcO2h9PgQ7IVFdmBW6_DC0o6Qo2_ugWLcDG8,136
|
19
|
-
plone/app/customerize/tests/testBrowserLayers.txt,sha256=
|
20
|
-
plone/app/customerize/tests/testCustomizeView.txt,sha256=
|
19
|
+
plone/app/customerize/tests/testBrowserLayers.txt,sha256=YKDQLOjLgIt0ysgoKmS9HKnk7pxs5KjeYAC5eQUxZVI,10871
|
20
|
+
plone/app/customerize/tests/testCustomizeView.txt,sha256=0NUKWE181cYt0jTvkKd__7DQr0Mr67I39yt9Bokk31A,4857
|
21
21
|
plone/app/customerize/tests/testDocTests.py,sha256=ys_M_wqsVnoIMvoxk_KMSB1548ipEuxdEMluLPg9wrY,703
|
22
22
|
plone/app/customerize/tests/testing.zcml,sha256=hSftI1skoWweVPIvByqDQk3jjVF61NdTbovpeysbMCs,1498
|
23
23
|
plone/app/customerize/tests/viewlets.py,sha256=efLvBw1GKTodnPYIVrC0HFrCfHUFlRPULqgvmHnVjkk,393
|
24
24
|
plone/app/customerize/tests/profiles/testing/viewlets.xml,sha256=xpQ5RxuLKqG-cTDGlVASmuxwtYvnO3vmhrtQ04an9uU,318
|
25
|
-
plone.app.customerize-2.0.
|
26
|
-
plone.app.customerize-2.0.
|
27
|
-
plone.app.customerize-2.0.
|
28
|
-
plone.app.customerize-2.0.
|
29
|
-
plone.app.customerize-2.0.
|
25
|
+
plone.app.customerize-2.0.2.dist-info/METADATA,sha256=8B49F2EUmVUGIN3msd95OS7-l_GAIpUd2WB0Mns-ii4,7839
|
26
|
+
plone.app.customerize-2.0.2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
27
|
+
plone.app.customerize-2.0.2.dist-info/namespace_packages.txt,sha256=RhWBQHJVbLHFKuJ5J4tGJxuY8dNrbsuKvPnJvM4b2AQ,16
|
28
|
+
plone.app.customerize-2.0.2.dist-info/top_level.txt,sha256=56bqrkG-vurYD0l15D71FPiDL7L3QqkfRWkYkdyS7WM,6
|
29
|
+
plone.app.customerize-2.0.2.dist-info/RECORD,,
|
@@ -1,3 +0,0 @@
|
|
1
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('plone', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone', types.ModuleType('plone'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
2
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('plone', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone', types.ModuleType('plone'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
3
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('plone', 'app'));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('plone.app', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('plone.app', [os.path.dirname(p)])));m = m or sys.modules.setdefault('plone.app', types.ModuleType('plone.app'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['plone'], 'app', m)
|
File without changes
|
{plone.app.customerize-2.0.0.dist-info → plone.app.customerize-2.0.2.dist-info}/top_level.txt
RENAMED
File without changes
|