plone.app.customerize 2.0.0__tar.gz → 2.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.
Files changed (54) hide show
  1. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/.editorconfig +17 -2
  2. plone_app_customerize-2.0.2/.flake8 +22 -0
  3. plone_app_customerize-2.0.2/.gitignore +56 -0
  4. plone_app_customerize-2.0.2/.meta.toml +11 -0
  5. plone_app_customerize-2.0.2/.pre-commit-config.yaml +95 -0
  6. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/CHANGES.rst +20 -1
  7. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/PKG-INFO +34 -10
  8. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/customize.pt +6 -5
  9. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/registrations.pt +4 -3
  10. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/testBrowserLayers.txt +1 -1
  11. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/testCustomizeView.txt +1 -1
  12. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/PKG-INFO +34 -10
  13. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/SOURCES.txt +1 -1
  14. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/requires.txt +1 -5
  15. plone_app_customerize-2.0.2/pyproject.toml +159 -0
  16. plone_app_customerize-2.0.2/setup.cfg +4 -0
  17. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/setup.py +13 -15
  18. plone_app_customerize-2.0.2/tox.ini +216 -0
  19. plone.app.customerize-2.0.0/.gitignore +0 -76
  20. plone.app.customerize-2.0.0/.meta.toml +0 -5
  21. plone.app.customerize-2.0.0/.pre-commit-config.yaml +0 -42
  22. plone.app.customerize-2.0.0/pyproject.toml +0 -62
  23. plone.app.customerize-2.0.0/setup.cfg +0 -22
  24. plone.app.customerize-2.0.0/tox.ini +0 -54
  25. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/CONTRIBUTING.rst +0 -0
  26. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/MANIFEST.in +0 -0
  27. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/README.rst +0 -0
  28. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/docs/LICENSE.GPL +0 -0
  29. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/docs/LICENSE.txt +0 -0
  30. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/__init__.py +0 -0
  31. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/__init__.py +0 -0
  32. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/README.txt +0 -0
  33. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/TODO.txt +0 -0
  34. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/__init__.py +0 -0
  35. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/browser.py +0 -0
  36. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/configure.zcml +0 -0
  37. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/dependencies.zcml +0 -0
  38. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/registration.py +0 -0
  39. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/testing.py +0 -0
  40. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/__init__.py +0 -0
  41. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/duplicate_viewlet.zcml +0 -0
  42. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/interfaces.py +0 -0
  43. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/local.pt +0 -0
  44. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/profiles/testing/viewlets.xml +0 -0
  45. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/standard.pt +0 -0
  46. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/testDocTests.py +0 -0
  47. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/testing.zcml +0 -0
  48. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tests/viewlets.py +0 -0
  49. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tool.gif +0 -0
  50. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone/app/customerize/tool.py +0 -0
  51. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/dependency_links.txt +0 -0
  52. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/namespace_packages.txt +0 -0
  53. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/not-zip-safe +0 -0
  54. {plone.app.customerize-2.0.0 → plone_app_customerize-2.0.2}/plone.app.customerize.egg-info/top_level.txt +0 -0
@@ -1,5 +1,6 @@
1
1
  # Generated from:
2
- # https://github.com/plone/meta/tree/master/config/default
2
+ # https://github.com/plone/meta/tree/main/config/default
3
+ # See the inline comments on how to expand/tweak this configuration file
3
4
  #
4
5
  # EditorConfig Configuration file, for more details see:
5
6
  # http://EditorConfig.org
@@ -28,12 +29,26 @@ max_line_length = off
28
29
  # 4 space indentation
29
30
  indent_size = 4
30
31
 
31
- [*.{yml,zpt,pt,dtml,zcml}]
32
+ [*.{yml,zpt,pt,dtml,zcml,html,xml}]
32
33
  # 2 space indentation
33
34
  indent_size = 2
34
35
 
36
+ [*.{json,jsonl,js,jsx,ts,tsx,css,less,scss}] # Frontend development
37
+ # 2 space indentation
38
+ indent_size = 2
39
+ max_line_length = 80
40
+
35
41
  [{Makefile,.gitmodules}]
36
42
  # Tab indentation (no size specified, but view as 4 spaces)
37
43
  indent_style = tab
38
44
  indent_size = unset
39
45
  tab_width = unset
46
+
47
+
48
+ ##
49
+ # Add extra configuration options in .meta.toml:
50
+ # [editorconfig]
51
+ # extra_lines = """
52
+ # _your own configuration lines_
53
+ # """
54
+ ##
@@ -0,0 +1,22 @@
1
+ # Generated from:
2
+ # https://github.com/plone/meta/tree/main/config/default
3
+ # See the inline comments on how to expand/tweak this configuration file
4
+ [flake8]
5
+ doctests = 1
6
+ ignore =
7
+ # black takes care of line length
8
+ E501,
9
+ # black takes care of where to break lines
10
+ W503,
11
+ # black takes care of spaces within slicing (list[:])
12
+ E203,
13
+ # black takes care of spaces after commas
14
+ E231,
15
+
16
+ ##
17
+ # Add extra configuration options in .meta.toml:
18
+ # [flake8]
19
+ # extra_lines = """
20
+ # _your own configuration lines_
21
+ # """
22
+ ##
@@ -0,0 +1,56 @@
1
+ # Generated from:
2
+ # https://github.com/plone/meta/tree/main/config/default
3
+ # See the inline comments on how to expand/tweak this configuration file
4
+ # python related
5
+ *.egg-info
6
+ *.pyc
7
+ *.pyo
8
+
9
+ # translation related
10
+ *.mo
11
+
12
+ # tools related
13
+ build/
14
+ .coverage
15
+ .*project
16
+ coverage.xml
17
+ dist/
18
+ docs/_build
19
+ __pycache__/
20
+ .tox
21
+ .vscode/
22
+ node_modules/
23
+
24
+ # venv / buildout related
25
+ bin/
26
+ develop-eggs/
27
+ eggs/
28
+ .eggs/
29
+ etc/
30
+ .installed.cfg
31
+ include/
32
+ lib/
33
+ lib64
34
+ .mr.developer.cfg
35
+ parts/
36
+ pyvenv.cfg
37
+ var/
38
+ local.cfg
39
+
40
+ # mxdev
41
+ /instance/
42
+ /.make-sentinels/
43
+ /*-mxdev.txt
44
+ /reports/
45
+ /sources/
46
+ /venv/
47
+ .installed.txt
48
+
49
+
50
+ ##
51
+ # Add extra configuration options in .meta.toml:
52
+ # [gitignore]
53
+ # extra_lines = """
54
+ # _your own configuration lines_
55
+ # """
56
+ ##
@@ -0,0 +1,11 @@
1
+ # Generated from:
2
+ # https://github.com/plone/meta/tree/main/config/default
3
+ # See the inline comments on how to expand/tweak this configuration file
4
+ [meta]
5
+ template = "default"
6
+ commit-id = "6e36bcc4"
7
+
8
+ [pre_commit]
9
+ extra_lines = """
10
+ exclude: tests/.*pt
11
+ """
@@ -0,0 +1,95 @@
1
+ # Generated from:
2
+ # https://github.com/plone/meta/tree/main/config/default
3
+ # See the inline comments on how to expand/tweak this configuration file
4
+ ci:
5
+ autofix_prs: false
6
+ autoupdate_schedule: monthly
7
+
8
+ repos:
9
+ - repo: https://github.com/asottile/pyupgrade
10
+ rev: v3.19.1
11
+ hooks:
12
+ - id: pyupgrade
13
+ args: [--py38-plus]
14
+ - repo: https://github.com/pycqa/isort
15
+ rev: 5.13.2
16
+ hooks:
17
+ - id: isort
18
+ - repo: https://github.com/psf/black
19
+ rev: 24.10.0
20
+ hooks:
21
+ - id: black
22
+ - repo: https://github.com/collective/zpretty
23
+ rev: 3.1.0
24
+ hooks:
25
+ - id: zpretty
26
+
27
+ ##
28
+ # Add extra configuration options in .meta.toml:
29
+ # [pre_commit]
30
+ # zpretty_extra_lines = """
31
+ # _your own configuration lines_
32
+ # """
33
+ ##
34
+ - repo: https://github.com/PyCQA/flake8
35
+ rev: 7.1.1
36
+ hooks:
37
+ - id: flake8
38
+
39
+ ##
40
+ # Add extra configuration options in .meta.toml:
41
+ # [pre_commit]
42
+ # flake8_extra_lines = """
43
+ # _your own configuration lines_
44
+ # """
45
+ ##
46
+ - repo: https://github.com/codespell-project/codespell
47
+ rev: v2.3.0
48
+ hooks:
49
+ - id: codespell
50
+ additional_dependencies:
51
+ - tomli
52
+
53
+ ##
54
+ # Add extra configuration options in .meta.toml:
55
+ # [pre_commit]
56
+ # codespell_extra_lines = """
57
+ # _your own configuration lines_
58
+ # """
59
+ ##
60
+ - repo: https://github.com/mgedmin/check-manifest
61
+ rev: "0.50"
62
+ hooks:
63
+ - id: check-manifest
64
+ - repo: https://github.com/regebro/pyroma
65
+ rev: "4.2"
66
+ hooks:
67
+ - id: pyroma
68
+ - repo: https://github.com/mgedmin/check-python-versions
69
+ rev: "0.22.1"
70
+ hooks:
71
+ - id: check-python-versions
72
+ args: ['--only', 'setup.py,pyproject.toml']
73
+ - repo: https://github.com/collective/i18ndude
74
+ rev: "6.2.1"
75
+ hooks:
76
+ - id: i18ndude
77
+
78
+
79
+ ##
80
+ # Add extra configuration options in .meta.toml:
81
+ # [pre_commit]
82
+ # i18ndude_extra_lines = """
83
+ # _your own configuration lines_
84
+ # """
85
+ ##
86
+
87
+ exclude: tests/.*pt
88
+
89
+ ##
90
+ # Add extra configuration options in .meta.toml:
91
+ # [pre_commit]
92
+ # extra_lines = """
93
+ # _your own configuration lines_
94
+ # """
95
+ ##
@@ -9,6 +9,25 @@ Changelog
9
9
 
10
10
  .. towncrier release notes start
11
11
 
12
+ 2.0.2 (2025-01-24)
13
+ ------------------
14
+
15
+ Bug fixes:
16
+
17
+
18
+ - Fix DeprecationWarnings. [maurits] (#4090)
19
+
20
+
21
+ 2.0.1 (2023-10-07)
22
+ ------------------
23
+
24
+ Internal:
25
+
26
+
27
+ - Update configuration files.
28
+ [plone devs] (cfffba8c)
29
+
30
+
12
31
  2.0.0 (2023-04-15)
13
32
  ------------------
14
33
 
@@ -168,7 +187,7 @@ Fixes:
168
187
  - Fixed Chameleon incompatibility.
169
188
  [swampmonkey]
170
189
 
171
- - Fix #11409 by storing the customized view name for future re-use
190
+ - Fix #11409 by storing the customized view name for future reuse
172
191
  [kiorky]
173
192
 
174
193
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plone.app.customerize
3
- Version: 2.0.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,27 +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
29
+ Requires-Dist: setuptools
30
+ Requires-Dist: five.customerize
31
+ Requires-Dist: plone.browserlayer
32
+ Requires-Dist: plone.portlets
33
+ Requires-Dist: Products.CMFCore
34
+ Requires-Dist: Zope
34
35
  Provides-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"
35
40
 
36
41
  Overview
37
42
  ========
@@ -56,6 +61,25 @@ Changelog
56
61
 
57
62
  .. towncrier release notes start
58
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
+
59
83
  2.0.0 (2023-04-15)
60
84
  ------------------
61
85
 
@@ -215,7 +239,7 @@ Fixes:
215
239
  - Fixed Chameleon incompatibility.
216
240
  [swampmonkey]
217
241
 
218
- - Fix #11409 by storing the customized view name for future re-use
242
+ - Fix #11409 by storing the customized view name for future reuse
219
243
  [kiorky]
220
244
 
221
245
 
@@ -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.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' % (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plone.app.customerize
3
- Version: 2.0.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,27 +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
29
+ Requires-Dist: setuptools
30
+ Requires-Dist: five.customerize
31
+ Requires-Dist: plone.browserlayer
32
+ Requires-Dist: plone.portlets
33
+ Requires-Dist: Products.CMFCore
34
+ Requires-Dist: Zope
34
35
  Provides-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"
35
40
 
36
41
  Overview
37
42
  ========
@@ -56,6 +61,25 @@ Changelog
56
61
 
57
62
  .. towncrier release notes start
58
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
+
59
83
  2.0.0 (2023-04-15)
60
84
  ------------------
61
85
 
@@ -215,7 +239,7 @@ Fixes:
215
239
  - Fixed Chameleon incompatibility.
216
240
  [swampmonkey]
217
241
 
218
- - Fix #11409 by storing the customized view name for future re-use
242
+ - Fix #11409 by storing the customized view name for future reuse
219
243
  [kiorky]
220
244
 
221
245
 
@@ -1,4 +1,5 @@
1
1
  .editorconfig
2
+ .flake8
2
3
  .gitignore
3
4
  .meta.toml
4
5
  .pre-commit-config.yaml
@@ -7,7 +8,6 @@ CONTRIBUTING.rst
7
8
  MANIFEST.in
8
9
  README.rst
9
10
  pyproject.toml
10
- setup.cfg
11
11
  setup.py
12
12
  tox.ini
13
13
  docs/LICENSE.GPL
@@ -2,12 +2,8 @@ setuptools
2
2
  five.customerize
3
3
  plone.browserlayer
4
4
  plone.portlets
5
- zope.component
6
- zope.interface
7
- zope.publisher
8
- zope.viewlet
9
5
  Products.CMFCore
10
- Acquisition
6
+ Zope
11
7
 
12
8
  [test]
13
9
  Products.GenericSetup
@@ -0,0 +1,159 @@
1
+ # Generated from:
2
+ # https://github.com/plone/meta/tree/main/config/default
3
+ # See the inline comments on how to expand/tweak this configuration file
4
+ [build-system]
5
+ requires = ["setuptools>=68.2"]
6
+
7
+ [tool.towncrier]
8
+ directory = "news/"
9
+ filename = "CHANGES.rst"
10
+ title_format = "{version} ({project_date})"
11
+ underlines = ["-", ""]
12
+
13
+ [[tool.towncrier.type]]
14
+ directory = "breaking"
15
+ name = "Breaking changes:"
16
+ showcontent = true
17
+
18
+ [[tool.towncrier.type]]
19
+ directory = "feature"
20
+ name = "New features:"
21
+ showcontent = true
22
+
23
+ [[tool.towncrier.type]]
24
+ directory = "bugfix"
25
+ name = "Bug fixes:"
26
+ showcontent = true
27
+
28
+ [[tool.towncrier.type]]
29
+ directory = "internal"
30
+ name = "Internal:"
31
+ showcontent = true
32
+
33
+ [[tool.towncrier.type]]
34
+ directory = "documentation"
35
+ name = "Documentation:"
36
+ showcontent = true
37
+
38
+ [[tool.towncrier.type]]
39
+ directory = "tests"
40
+ name = "Tests"
41
+ showcontent = true
42
+
43
+ ##
44
+ # Add extra configuration options in .meta.toml:
45
+ # [pyproject]
46
+ # towncrier_extra_lines = """
47
+ # extra_configuration
48
+ # """
49
+ ##
50
+
51
+ [tool.isort]
52
+ profile = "plone"
53
+
54
+ ##
55
+ # Add extra configuration options in .meta.toml:
56
+ # [pyproject]
57
+ # isort_extra_lines = """
58
+ # extra_configuration
59
+ # """
60
+ ##
61
+
62
+ [tool.black]
63
+ target-version = ["py38"]
64
+
65
+ ##
66
+ # Add extra configuration options in .meta.toml:
67
+ # [pyproject]
68
+ # black_extra_lines = """
69
+ # extra_configuration
70
+ # """
71
+ ##
72
+
73
+ [tool.codespell]
74
+ ignore-words-list = "discreet,"
75
+ skip = "*.po,"
76
+ ##
77
+ # Add extra configuration options in .meta.toml:
78
+ # [pyproject]
79
+ # codespell_ignores = "foo,bar"
80
+ # codespell_skip = "*.po,*.map,package-lock.json"
81
+ ##
82
+
83
+ [tool.dependencychecker]
84
+ Zope = [
85
+ # Zope own provided namespaces
86
+ 'App', 'OFS', 'Products.Five', 'Products.OFSP', 'Products.PageTemplates',
87
+ 'Products.SiteAccess', 'Shared', 'Testing', 'ZPublisher', 'ZTUtils',
88
+ 'Zope2', 'webdav', 'zmi',
89
+ # ExtensionClass own provided namespaces
90
+ 'ExtensionClass', 'ComputedAttribute', 'MethodObject',
91
+ # Zope dependencies
92
+ 'AccessControl', 'Acquisition', 'AuthEncoding', 'beautifulsoup4', 'BTrees',
93
+ 'cffi', 'Chameleon', 'DateTime', 'DocumentTemplate',
94
+ 'MultiMapping', 'multipart', 'PasteDeploy', 'Persistence', 'persistent',
95
+ 'pycparser', 'python-gettext', 'pytz', 'RestrictedPython', 'roman',
96
+ 'soupsieve', 'transaction', 'waitress', 'WebOb', 'WebTest', 'WSGIProxy2',
97
+ 'z3c.pt', 'zc.lockfile', 'ZConfig', 'zExceptions', 'ZODB', 'zodbpickle',
98
+ 'zope.annotation', 'zope.browser', 'zope.browsermenu', 'zope.browserpage',
99
+ 'zope.browserresource', 'zope.cachedescriptors', 'zope.component',
100
+ 'zope.configuration', 'zope.container', 'zope.contentprovider',
101
+ 'zope.contenttype', 'zope.datetime', 'zope.deferredimport',
102
+ 'zope.deprecation', 'zope.dottedname', 'zope.event', 'zope.exceptions',
103
+ 'zope.filerepresentation', 'zope.globalrequest', 'zope.hookable',
104
+ 'zope.i18n', 'zope.i18nmessageid', 'zope.interface', 'zope.lifecycleevent',
105
+ 'zope.location', 'zope.pagetemplate', 'zope.processlifetime', 'zope.proxy',
106
+ 'zope.ptresource', 'zope.publisher', 'zope.schema', 'zope.security',
107
+ 'zope.sequencesort', 'zope.site', 'zope.size', 'zope.structuredtext',
108
+ 'zope.tal', 'zope.tales', 'zope.testbrowser', 'zope.testing',
109
+ 'zope.traversing', 'zope.viewlet'
110
+ ]
111
+ 'Products.CMFCore' = [
112
+ 'docutils', 'five.localsitemanager', 'Missing', 'Products.BTreeFolder2',
113
+ 'Products.GenericSetup', 'Products.MailHost', 'Products.PythonScripts',
114
+ 'Products.StandardCacheManagers', 'Products.ZCatalog', 'Record',
115
+ 'zope.sendmail', 'Zope'
116
+ ]
117
+ 'plone.base' = [
118
+ 'plone.batching', 'plone.registry', 'plone.schema','plone.z3cform',
119
+ 'Products.CMFCore', 'Products.CMFDynamicViewFTI',
120
+ ]
121
+ python-dateutil = ['dateutil']
122
+
123
+ ##
124
+ # Add extra configuration options in .meta.toml:
125
+ # [pyproject]
126
+ # dependencies_ignores = "['zestreleaser.towncrier']"
127
+ # dependencies_mappings = [
128
+ # "gitpython = ['git']",
129
+ # "pygithub = ['github']",
130
+ # ]
131
+ ##
132
+
133
+ [tool.check-manifest]
134
+ ignore = [
135
+ ".editorconfig",
136
+ ".meta.toml",
137
+ ".pre-commit-config.yaml",
138
+ "tox.ini",
139
+ ".flake8",
140
+ "mx.ini",
141
+
142
+ ]
143
+ ##
144
+ # Add extra configuration options in .meta.toml:
145
+ # [pyproject]
146
+ # check_manifest_ignores = """
147
+ # "*.map.js",
148
+ # "*.pyc",
149
+ # """
150
+ ##
151
+
152
+
153
+ ##
154
+ # Add extra configuration options in .meta.toml:
155
+ # [pyproject]
156
+ # extra_lines = """
157
+ # _your own configuration lines_
158
+ # """
159
+ ##
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+