======================
zope.contentprovider
======================
.. image:: https://img.shields.io/pypi/v/zope.contentprovider.svg
:target: https://pypi.python.org/pypi/zope.contentprovider/
:alt: Latest release
.. image:: https://img.shields.io/pypi/pyversions/zope.contentprovider.svg
:target: https://pypi.org/project/zope.contentprovider/
:alt: Supported Python versions
.. image:: https://travis-ci.com/zopefoundation/zope.contentprovider.svg?branch=master
:target: https://travis-ci.com/zopefoundation/zope.contentprovider
.. image:: https://coveralls.io/repos/github/zopefoundation/zope.contentprovider/badge.svg?branch=master
:target: https://coveralls.io/github/zopefoundation/zope.contentprovider?branch=master
.. image:: https://readthedocs.org/projects/zopecontentprovider/badge/?version=latest
:target: https://zopecontentprovider.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
This package provides a framework to develop componentized Web GUI
applications. Instead of describing the content of a page using a single
template or static system of templates and METAL macros, content provider
objects are dynamically looked up based on the setup/configuration of the
application.
Detailed documentation is available at https://zopecontentprovider.readthedocs.io
=========
Changes
=========
5.0 (2023-04-14)
================
- Drop support for Python 2.7, 3.4, 3.5, 3.6.
- Drop support for deprecated ``python setup.py test``.
- Add support for Python 3.8, 3.9, 3.10, 3.11.
4.2.1 (2018-11-08)
==================
- Fix deprecation warnings.
4.2 (2018-10-05)
================
- Add support for Python 3.7.
- Fixed UpdateNotCalled being an instance rather than an exception class
(`#4 <https://github.com/zopefoundation/zope.contentprovider/issues/4>`_).
- Host documentation at https://zopecontentprovider.readthedocs.io
4.1.0 (2017-08-08)
==================
- Add support for Python 3.5 and 3.6.
- Drop support for Python 2.6 and 3.3.
4.0.0 (2014-12-24)
==================
- Add support for PyPy and PyPy3.
- Add support for Python 3.4.
- Add support for testing on Travis.
4.0.0a1 (2013-02-22)
====================
- Add Python 3.3 support.
- Replace deprecated ``zope.component.adapts`` usage with equivalent
``zope.component.adapter`` decorator.
- Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.
- Drop support for Python 2.4 and 2.5.
3.7.2 (2010-05-25)
==================
- Fix unit tests broken under Python 2.4 by the switch to the standard
library ``doctest`` module.
3.7.1 (2010-04-30)
==================
- Prefer the standard library's ``doctest`` module to the one from
``zope.testing.``
3.7 (2010-04-27)
================
- Since ``tales:expressiontype`` is now in ``zope.browserpage``, update
conditional ZCML accordingly so it doesn't depend on the presence of
``zope.app.pagetemplate`` anymore.
3.6.1 (2009-12-23)
==================
- Ensure that our ``configure.zcml`` can be loaded without requiring further
dependencies. It uses a ``tales:expressiontype`` directive defined in
``zope.app.pagetemplate.`` We keep that dependency optional, as not all
consumers of this package use ZCML to configure the expression type.
3.6.0 (2009-12-22)
==================
- Update test dependency to use ``zope.browserpage``.
3.5.0 (2009-03-18)
==================
- Add very simple, but useful base class for implementing content
providers, see ``zope.contentprovider.provider.ContentProviderBase``.
- Remove unneeded testing dependencies. We only need ``zope.testing`` and
``zope.app.pagetemplate``.
- Remove zcml slug and old zpkg-related files.
- Add setuptools dependency to setup.py.
- Clean up package's description and documentation a bit. Remove
duplicate text in README.
- Change mailing list address to zope-dev at zope.org instead of
retired one.
- Change ``cheeseshop`` to ``pypi`` in the package url.
3.4.0 (2007-10-02)
==================
- Initial release independent of the main Zope tree.
Raw data
{
"_id": null,
"home_page": "https://github.com/zopefoundation/zope.contentprovider",
"name": "zope.contentprovider",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "zope3 content provider",
"author": "Zope Foundation and Contributors",
"author_email": "zope-dev@zope.dev",
"download_url": "https://files.pythonhosted.org/packages/4f/4d/9325fffb5d6e09308effff48b00f3a81e6e463719e7a42dae8e59188f7cd/zope.contentprovider-5.0.tar.gz",
"platform": null,
"description": "======================\n zope.contentprovider\n======================\n\n.. image:: https://img.shields.io/pypi/v/zope.contentprovider.svg\n :target: https://pypi.python.org/pypi/zope.contentprovider/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.contentprovider.svg\n :target: https://pypi.org/project/zope.contentprovider/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.com/zopefoundation/zope.contentprovider.svg?branch=master\n :target: https://travis-ci.com/zopefoundation/zope.contentprovider\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.contentprovider/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/zope.contentprovider?branch=master\n\n.. image:: https://readthedocs.org/projects/zopecontentprovider/badge/?version=latest\n :target: https://zopecontentprovider.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\nThis package provides a framework to develop componentized Web GUI\napplications. Instead of describing the content of a page using a single\ntemplate or static system of templates and METAL macros, content provider\nobjects are dynamically looked up based on the setup/configuration of the\napplication.\n\nDetailed documentation is available at https://zopecontentprovider.readthedocs.io\n\n\n=========\n Changes\n=========\n\n5.0 (2023-04-14)\n================\n\n- Drop support for Python 2.7, 3.4, 3.5, 3.6.\n\n- Drop support for deprecated ``python setup.py test``.\n\n- Add support for Python 3.8, 3.9, 3.10, 3.11.\n\n\n4.2.1 (2018-11-08)\n==================\n\n- Fix deprecation warnings.\n\n\n4.2 (2018-10-05)\n================\n\n- Add support for Python 3.7.\n\n- Fixed UpdateNotCalled being an instance rather than an exception class\n (`#4 <https://github.com/zopefoundation/zope.contentprovider/issues/4>`_).\n\n- Host documentation at https://zopecontentprovider.readthedocs.io\n\n4.1.0 (2017-08-08)\n==================\n\n- Add support for Python 3.5 and 3.6.\n\n- Drop support for Python 2.6 and 3.3.\n\n\n4.0.0 (2014-12-24)\n==================\n\n- Add support for PyPy and PyPy3.\n\n- Add support for Python 3.4.\n\n- Add support for testing on Travis.\n\n\n4.0.0a1 (2013-02-22)\n====================\n\n- Add Python 3.3 support.\n\n- Replace deprecated ``zope.component.adapts`` usage with equivalent\n ``zope.component.adapter`` decorator.\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n\n3.7.2 (2010-05-25)\n==================\n\n- Fix unit tests broken under Python 2.4 by the switch to the standard\n library ``doctest`` module.\n\n\n3.7.1 (2010-04-30)\n==================\n\n- Prefer the standard library's ``doctest`` module to the one from\n ``zope.testing.``\n\n\n3.7 (2010-04-27)\n================\n\n- Since ``tales:expressiontype`` is now in ``zope.browserpage``, update\n conditional ZCML accordingly so it doesn't depend on the presence of\n ``zope.app.pagetemplate`` anymore.\n\n\n3.6.1 (2009-12-23)\n==================\n\n- Ensure that our ``configure.zcml`` can be loaded without requiring further\n dependencies. It uses a ``tales:expressiontype`` directive defined in\n ``zope.app.pagetemplate.`` We keep that dependency optional, as not all\n consumers of this package use ZCML to configure the expression type.\n\n\n3.6.0 (2009-12-22)\n==================\n\n- Update test dependency to use ``zope.browserpage``.\n\n\n3.5.0 (2009-03-18)\n==================\n\n- Add very simple, but useful base class for implementing content\n providers, see ``zope.contentprovider.provider.ContentProviderBase``.\n\n- Remove unneeded testing dependencies. We only need ``zope.testing`` and\n ``zope.app.pagetemplate``.\n\n- Remove zcml slug and old zpkg-related files.\n\n- Add setuptools dependency to setup.py.\n\n- Clean up package's description and documentation a bit. Remove\n duplicate text in README.\n\n- Change mailing list address to zope-dev at zope.org instead of\n retired one.\n\n- Change ``cheeseshop`` to ``pypi`` in the package url.\n\n\n3.4.0 (2007-10-02)\n==================\n\n- Initial release independent of the main Zope tree.\n",
"bugtrack_url": null,
"license": "ZPL 2.1",
"summary": "Content Provider Framework for Zope Templates",
"version": "5.0",
"split_keywords": [
"zope3",
"content",
"provider"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "eea31920b195f111296e7f191dfa874e3235ecdfe3189cfe6e3edb7bac61efd3",
"md5": "b5aa541ea56cb0be86549a88b1fd87da",
"sha256": "60990e9bc37abf88d30d1552524c50a4b936a105948e8a70f3d9734fb157b09e"
},
"downloads": -1,
"filename": "zope.contentprovider-5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b5aa541ea56cb0be86549a88b1fd87da",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 11195,
"upload_time": "2023-04-14T06:28:19",
"upload_time_iso_8601": "2023-04-14T06:28:19.026745Z",
"url": "https://files.pythonhosted.org/packages/ee/a3/1920b195f111296e7f191dfa874e3235ecdfe3189cfe6e3edb7bac61efd3/zope.contentprovider-5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f4d9325fffb5d6e09308effff48b00f3a81e6e463719e7a42dae8e59188f7cd",
"md5": "bba5d24f029e3b5eb7013de431ab045d",
"sha256": "3b0c17db78fa3ce27759fa3ddb400961b39b3fcbf2303329e06ce2b947864bf5"
},
"downloads": -1,
"filename": "zope.contentprovider-5.0.tar.gz",
"has_sig": false,
"md5_digest": "bba5d24f029e3b5eb7013de431ab045d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 21668,
"upload_time": "2023-04-14T06:28:21",
"upload_time_iso_8601": "2023-04-14T06:28:21.294875Z",
"url": "https://files.pythonhosted.org/packages/4f/4d/9325fffb5d6e09308effff48b00f3a81e6e463719e7a42dae8e59188f7cd/zope.contentprovider-5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-04-14 06:28:21",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "zopefoundation",
"github_project": "zope.contentprovider",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "zope.contentprovider"
}