plone.app.customerize 2.0.1__py3-none-any.whl → 2.0.3__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.
@@ -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 {
@@ -14,14 +16,13 @@
14
16
 
15
17
  <div class="alert alert-danger"
16
18
  role="alert"
17
- i18n:ignore="true"
18
19
  >
19
20
  ATTENTION: beware using this tool.
20
21
  Errors (e.g.
21
- <code i18n:ignore="true">TypeError</code>,
22
- <code i18n:ignore="true">Unauthorized</code>
22
+ <code>TypeError</code>,
23
+ <code>Unauthorized</code>
23
24
  etc) may popup if some kinds of
24
- <code i18n:ignore="true">python:</code>
25
+ <code>python:</code>
25
26
  expressions are used in the template.
26
27
  This makes it impossible to customize those here (try z3c.jbot or regular zcml overrides instead).
27
28
  The reason is that browser view templates are Chameleon Pagetemplates while items in portal_view_customization are Zope 2 templates.
@@ -29,17 +30,12 @@
29
30
  If that happens just delete the custom copy using the Contents tab above.
30
31
  </div>
31
32
 
32
- <p class="form-help"
33
- i18n:ignore="true"
34
- >
33
+ <p class="form-help">
35
34
  The following list shows all registered (template-based) views
36
35
  sorted by interface. Click one of the links to see the contents
37
36
  of the view template and possibly customize it. Views that already
38
37
  have been customized are
39
- <span class="customized"
40
- i18n:ignore="true"
41
- >highlighted like
42
- this</span>.
38
+ <span class="customized">highlighted like this</span>.
43
39
  </p>
44
40
 
45
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.z2 import Browser
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.z2 import Browser
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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: plone.app.customerize
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: Integrate five.customerize into Plone.
5
5
  Home-page: https://pypi.org/project/plone.app.customerize/
6
6
  Author: Plone Foundation
@@ -30,17 +30,26 @@ Requires-Dist: setuptools
30
30
  Requires-Dist: five.customerize
31
31
  Requires-Dist: plone.browserlayer
32
32
  Requires-Dist: plone.portlets
33
- Requires-Dist: zope.component
34
- Requires-Dist: zope.interface
35
- Requires-Dist: zope.publisher
36
- Requires-Dist: zope.viewlet
37
33
  Requires-Dist: Products.CMFCore
38
- Requires-Dist: Acquisition
34
+ Requires-Dist: Zope
39
35
  Provides-Extra: test
40
- Requires-Dist: Products.GenericSetup ; extra == 'test'
41
- Requires-Dist: plone.app.layout ; extra == 'test'
42
- Requires-Dist: plone.app.testing ; extra == 'test'
43
- Requires-Dist: plone.testing ; extra == 'test'
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"
40
+ Dynamic: author
41
+ Dynamic: author-email
42
+ Dynamic: classifier
43
+ Dynamic: description
44
+ Dynamic: description-content-type
45
+ Dynamic: home-page
46
+ Dynamic: keywords
47
+ Dynamic: license
48
+ Dynamic: platform
49
+ Dynamic: provides-extra
50
+ Dynamic: requires-dist
51
+ Dynamic: requires-python
52
+ Dynamic: summary
44
53
 
45
54
  Overview
46
55
  ========
@@ -65,6 +74,24 @@ Changelog
65
74
 
66
75
  .. towncrier release notes start
67
76
 
77
+ 2.0.3 (2025-09-11)
78
+ ------------------
79
+
80
+ Internal:
81
+
82
+
83
+ - Move distribution to src layout [gforcada] (#4217)
84
+
85
+
86
+ 2.0.2 (2025-01-24)
87
+ ------------------
88
+
89
+ Bug fixes:
90
+
91
+
92
+ - Fix DeprecationWarnings. [maurits] (#4090)
93
+
94
+
68
95
  2.0.1 (2023-10-07)
69
96
  ------------------
70
97
 
@@ -1,4 +1,4 @@
1
- plone.app.customerize-2.0.1-py3.11-nspkg.pth,sha256=tdmdQx8H_-gZrxP9sPr1x3kJ7sY3m1nCyzrRQ2PlIZc,1136
1
+ plone.app.customerize-2.0.3-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
@@ -7,7 +7,7 @@ plone/app/customerize/configure.zcml,sha256=oqGGkV8WZp2z3Nd-jbbTRsyZ0pOJasERscT0
7
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=KFmXEwRj6ie_iDUbk6I2EBhbNWcRRTAJbCxup4kag5g,2347
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=uh2aoovORS361c71asxc5kQ5UszWbrJ7o7e3FRbPLbo,10869
20
- plone/app/customerize/tests/testCustomizeView.txt,sha256=GQ4ACrHW68jyHH8d4e7yI-JVgdG8zPIyIzMmqsXOj1M,4855
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.1.dist-info/METADATA,sha256=9gSD904oShiPZq6aZNid1kOVWvcCcekI7hXGM54cCs8,7869
26
- plone.app.customerize-2.0.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
27
- plone.app.customerize-2.0.1.dist-info/namespace_packages.txt,sha256=RhWBQHJVbLHFKuJ5J4tGJxuY8dNrbsuKvPnJvM4b2AQ,16
28
- plone.app.customerize-2.0.1.dist-info/top_level.txt,sha256=56bqrkG-vurYD0l15D71FPiDL7L3QqkfRWkYkdyS7WM,6
29
- plone.app.customerize-2.0.1.dist-info/RECORD,,
25
+ plone_app_customerize-2.0.3.dist-info/METADATA,sha256=aVLtLey8etHUcb1SARO9EAcPrYucvXaQfwsOe-kchQ8,8219
26
+ plone_app_customerize-2.0.3.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
27
+ plone_app_customerize-2.0.3.dist-info/namespace_packages.txt,sha256=RhWBQHJVbLHFKuJ5J4tGJxuY8dNrbsuKvPnJvM4b2AQ,16
28
+ plone_app_customerize-2.0.3.dist-info/top_level.txt,sha256=56bqrkG-vurYD0l15D71FPiDL7L3QqkfRWkYkdyS7WM,6
29
+ plone_app_customerize-2.0.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,2 +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', '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)