Auto include code and zcml
Project description
plone.autoinclude
Automatically include zcml of a package when it is loaded in a Plone site.
Features
It is an alternative to z3c.autoinclude.
When a package registers an autoinclude entry point, we load its Python code at Zope/Plone startup.
And we load its zcml.
Works with Buildout-installed packages.
Works with pip-installed packages.
Compatibility
This is made for Python 3.6+. It works on Plone 5.2 and 6.0.
It is intended (at least by some) to be used in core Plone 6. See “pre-PLIP” 3053.
Entry point details
This is an entry point with all options specified:
entry_points=""" [plone.autoinclude.plugin] target = plone module = example.alternative """
You must specify at least one option, otherwise the entry point does not exist.
- target
In which framework should your zcml be loaded? For a Plone add-on you would use plone. If Zope ever wants to use something similar, it could add configuration to look for packages with target="zope". You can come up with targets yourself, and load them in a policy package, maybe: cms, frontend, companyname, customername, nl/de (language). If target is empty, or the option is not there, the zcml will get loaded by all frameworks.
- module
Use this when your package name is different from what you import in Python.
Comparison with z3c.autoinclude
z3c.autoinclude supports includeDependencies in a zcml file in your package. This would look in the setup_requires of the package to find dependencies. For each, it would load the zcml. This can take quite long. It might not work for packages installed by pip, but this is not confirmed. In the Plone community this is discouraged, and Plone already disables this in the tests. plone.autoinclude does not support this. You should load the zcml of the dependencies explicitly in the configure.zcml of your package.
z3c.autoinclude tries hard to find packages in non-standard places, installed in weird or old ways, or with a module name that differs from the package name, with code especially suited for eggs that buildout installs. plone.autoinclude simply uses importlib.import_module on the module name. If there is a mismatch between package name and module name, you can set module = modulename in your entry point.
z3c.autoinclude does not support empty targets. The target of the entry point must match the target that is being loaded. plone.autoinclude does support empty targets: they will always get loaded. This is not good or bad, it is just a different choice.
z3c.autoinclude supports disabling loading the plugins, via either an environment variable or an api call. plone.autoinclude does not. But Products.CMFPlone currently loads the z3c.autoinclude plugins unless a zcml condition is true: not-have disable-autoinclude. When Products.CMFPlone switches to plone.autoinclude, it can use this same condition.
In general, plone.autoinclude is a bit more modern, as it only started in 2020, and only supports Python 3.
Inclusion in Plone now
Current Plone (5.2 and 6.0.0a1) do not use plone.autoinclude. But you can still use it for your Plone project.
First add it to your buildout:
[instance] ... eggs = plone.autoinclude zcml = plone.autoinclude.ploneinclude-meta plone.autoinclude.ploneinclude plone.autoinclude.ploneinclude-overrides
This will include three zcml files from the ploneinclude directory. It will do this:
Disable the original z3c.autoinclude.
Load CMFPlone meta.zcml, so the order in which zcml is loaded stays mostly the same.
Load plone.autoinclude meta.zcml.
Automatically include the meta.zcml of all plone plugins.
Load CMFPlone configure.zcml.
Automatically include the configure.zcml of all plone plugins.
Load CMFPlone overrides.zcml.
Automatically include the overrides.zcml of all plone plugins.
For other frameworks
You can take the above section as example, and take care of the following
Include the plone.autoinclude package in install_requires.
In your meta.zcml load the meta.zcml of plone.autoinclude.
In your meta.zcml load the meta.zcml of your plugins: <autoIncludePlugins target="your-framework" file="meta.zcml" />
In your configure.zcml load the configure.zcml of your plugins: <autoIncludePlugins target="your-framework" file="configure.zcml" />
In your overrides.zcml load the meta.zcml of your plugins in override mode: <autoIncludePluginsOverrides target="your-framework" file="meta.zcml" />
Inclusion in core Plone
For core Plone my intention would be to do this:
Remove code that loads the z3c.autoinclude package, mostly in Products.CMFPlone. Replace it with the plone.autoinclude variant.
In Products.CMFPlone/meta.zcml set:
<include package="plone.autoinclude" file="meta.zcml" /> <autoIncludePlugins target="plone" file="meta.zcml" />
In Products.CMFPlone/configure.zcml set:
<autoIncludePlugins target="plone" file="configure.zcml" />
In Products.CMFPlone/overrides.zcml set:
<autoIncludePluginsOverrides target="plone" file="overrides.zcml" />
See also src/plone/autoinclude/ploneinclude/ and test-packages/example.ploneintegration. And see CMFPlone branch plone-autoinclude, based on 5.2.x.
Installation with pip
Let’s leave buildout completely out of the picture and only use pip, in this case with plone 5.2.5. We use the legacy resolver from pip, to avoid some possible problems that have nothing to do with autoinclude:
# Create virtual environment in the current directory: python3.8 -mvenv . # Install Plone and Paste: bin/pip install -c https://dist.plone.org/release/5.2.5/constraints.txt Products.CMFPlone Paste --use-deprecated legacy-resolver # Install plone.autoinclude from the current git checkout: bin/pip install -e . # or 'bin/pip install plone.autoinclude' to get the latest from PyPI. # Create the Zope WSGI instance: bin/mkwsgiinstance -d . -u admin:admin # Copy our zcml that disables z3c.autoinclude and enables our own. cp -a package-includes etc/ # Start Zope: bin/runwsgi -v etc/zope.ini
Contribute or get support
If you are having issues, please let us know in the issue tracker: https://github.com/plone/plone.autoinclude/issues
The source code is on GitHub: https://github.com/plone/plone.autoinclude
License
The project is licensed under the GPLv2.
Changelog
1.0.0a2 (2021-10-20)
Bug fixes:
Improved documentation, especially on how to include this. Added zcml in a ploneinclude directory to make this easier for now. [maurits] (#1)
1.0.0a1 (2021-10-15)
New features:
Initial release. [maurits, tschorr]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for plone.autoinclude-1.0.0a2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30beb8ac26956c93b81c1a5762d59a6a890d303eefa6752e640de8a666c8fdbc |
|
MD5 | 9c6227262b7e3243c040127f4c1c0111 |
|
BLAKE2b-256 | 22a287252324739e31eab7371189bc59ab04a5c68a275af9dd6562a4821e3eb5 |
Hashes for plone.autoinclude-1.0.0a2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90f7dc1e645975c709564571db486dc32ab1fdd894ab26ebe53021a6d9a9989b |
|
MD5 | c51b5df4a8194ec572e4e58d8d4d8f95 |
|
BLAKE2b-256 | 376c8151d8692ecd13de41d1b0b09347be929b02533eec321e3a62c4b20f662c |