==============
zope.viewlet
==============
.. image:: https://img.shields.io/pypi/v/zope.viewlet.svg
:target: https://pypi.org/project/zope.viewlet/
:alt: Latest release
.. image:: https://img.shields.io/pypi/pyversions/zope.viewlet.svg
:target: https://pypi.org/project/zope.viewlet/
:alt: Supported Python versions
.. image:: https://github.com/zopefoundation/zope.viewlet/actions/workflows/tests.yml/badge.svg
:target: https://github.com/zopefoundation/zope.viewlet/actions/workflows/tests.yml
.. image:: https://coveralls.io/repos/github/zopefoundation/zope.viewlet/badge.svg?branch=master
:target: https://coveralls.io/github/zopefoundation/zope.viewlet?branch=master
.. image:: https://readthedocs.org/projects/zopeviewlet/badge/?version=latest
:target: https://zopeviewlet.readthedocs.io/en/latest/
:alt: Documentation Status
Viewlets provide a generic framework for building pluggable user
interfaces. Viewlets are a special type of `content provider
<https://pypi.org/project/zope.contentprovider/>`_ that allows a
template to define a region (a "viewlet manager") into which content
("viewlets") can be plugged.
Documentation is hosted at https://zopeviewlet.readthedocs.io/
=========
Changes
=========
5.0 (2023-03-27)
================
- Drop support for Python 2.7, 3.5, 3.6.
- Drop support for deprecated ``python setup.py test``.
- Add support for Python 3.11.
4.3 (2022-03-18)
================
- Add support for Python 3.8, 3.9 and 3.10.
- Drop support for Python 3.4.
4.2.1 (2018-12-17)
==================
- Fix deprecation warnings.
(`#11 <https://github.com/zopefoundation/zope.viewlet/pull/11>`_)
4.2 (2018-10-09)
================
- Add support for Python 3.7.
- Host documentation at https://zopeviewlet.readthedocs.io
4.1.0 (2017-09-23)
==================
- 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-24)
====================
- Add support for Python 3.3.
- 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)
==================
- Remove use of 'zope.testing.doctest' in favor of stdlib's 'doctest.
- Fix dubious quoting in metadirectives.py. Closes
https://bugs.launchpad.net/zope2/+bug/143774.
3.7.0 (2009-12-22)
==================
- Depend on ``zope.browserpage`` in favor of ``zope.app.pagetemplate``.
3.6.1 (2009-08-29)
==================
- Fix unit tests in README.txt.
3.6.0 (2009-08-02)
==================
- Optimize the the script tag for the JS viewlet. This makes YSlow happy.
- Remove ZCML slugs and old zpkg-related files.
- Drop all testing dependncies except ``zope.testing``.
3.5.0 (2009-01-26)
==================
- Remove the dependency on ``zope.app.publisher`` by moving four simple helper
functions into this package and making the interface for describing the
ZCML content provider directive explicit.
- Typo fix in CSSViewlet docstring.
3.4.2 (2008-01-24)
==================
- Re-release of 3.4.1 because of brown bag release.
3.4.1 (2008-01-21)
==================
- Implement missing ``__contains__`` method in IViewletManager
- Implement additional viewlet managers offering weight ordered sorting
- Implement additional viewlet managers offering conditional filtering
3.4.1a (2007-4-22)
==================
- Add a missing ',' behind ``zope.i18nmessageid``.
- Recreate the ``README.txt`` removing everything except for the overview.
3.4.0 (2007-10-10)
==================
- Initial release independent of the main Zope tree.
Raw data
{
"_id": null,
"home_page": "https://github.com/zopefoundation/zope.viewlet",
"name": "zope.viewlet",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "zope web html ui viewlet pattern",
"author": "Zope Foundation and Contributors",
"author_email": "zope-dev@zope.dev",
"download_url": "https://files.pythonhosted.org/packages/22/60/a924e90e0ba976597f9c817900e93a59b6fa02ad3d49dd88a76d3901509f/zope.viewlet-5.0.tar.gz",
"platform": null,
"description": "==============\n zope.viewlet\n==============\n\n.. image:: https://img.shields.io/pypi/v/zope.viewlet.svg\n :target: https://pypi.org/project/zope.viewlet/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.viewlet.svg\n :target: https://pypi.org/project/zope.viewlet/\n :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.viewlet/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/zopefoundation/zope.viewlet/actions/workflows/tests.yml\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.viewlet/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/zope.viewlet?branch=master\n\n.. image:: https://readthedocs.org/projects/zopeviewlet/badge/?version=latest\n :target: https://zopeviewlet.readthedocs.io/en/latest/\n :alt: Documentation Status\n\n\nViewlets provide a generic framework for building pluggable user\ninterfaces. Viewlets are a special type of `content provider\n<https://pypi.org/project/zope.contentprovider/>`_ that allows a\ntemplate to define a region (a \"viewlet manager\") into which content\n(\"viewlets\") can be plugged.\n\nDocumentation is hosted at https://zopeviewlet.readthedocs.io/\n\n\n=========\n Changes\n=========\n\n5.0 (2023-03-27)\n================\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Drop support for deprecated ``python setup.py test``.\n\n- Add support for Python 3.11.\n\n\n4.3 (2022-03-18)\n================\n\n- Add support for Python 3.8, 3.9 and 3.10.\n\n- Drop support for Python 3.4.\n\n\n4.2.1 (2018-12-17)\n==================\n\n- Fix deprecation warnings.\n (`#11 <https://github.com/zopefoundation/zope.viewlet/pull/11>`_)\n\n\n4.2 (2018-10-09)\n================\n\n- Add support for Python 3.7.\n\n- Host documentation at https://zopeviewlet.readthedocs.io\n\n4.1.0 (2017-09-23)\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-24)\n====================\n\n- Add support for Python 3.3.\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- Remove use of 'zope.testing.doctest' in favor of stdlib's 'doctest.\n\n- Fix dubious quoting in metadirectives.py. Closes\n https://bugs.launchpad.net/zope2/+bug/143774.\n\n\n3.7.0 (2009-12-22)\n==================\n\n- Depend on ``zope.browserpage`` in favor of ``zope.app.pagetemplate``.\n\n\n3.6.1 (2009-08-29)\n==================\n\n- Fix unit tests in README.txt.\n\n\n3.6.0 (2009-08-02)\n==================\n\n- Optimize the the script tag for the JS viewlet. This makes YSlow happy.\n\n- Remove ZCML slugs and old zpkg-related files.\n\n- Drop all testing dependncies except ``zope.testing``.\n\n\n3.5.0 (2009-01-26)\n==================\n\n- Remove the dependency on ``zope.app.publisher`` by moving four simple helper\n functions into this package and making the interface for describing the\n ZCML content provider directive explicit.\n\n- Typo fix in CSSViewlet docstring.\n\n\n3.4.2 (2008-01-24)\n==================\n\n- Re-release of 3.4.1 because of brown bag release.\n\n\n3.4.1 (2008-01-21)\n==================\n\n- Implement missing ``__contains__`` method in IViewletManager\n\n- Implement additional viewlet managers offering weight ordered sorting\n\n- Implement additional viewlet managers offering conditional filtering\n\n\n3.4.1a (2007-4-22)\n==================\n\n- Add a missing ',' behind ``zope.i18nmessageid``.\n\n- Recreate the ``README.txt`` removing everything except for the overview.\n\n\n3.4.0 (2007-10-10)\n==================\n\n- Initial release independent of the main Zope tree.\n",
"bugtrack_url": null,
"license": "ZPL 2.1",
"summary": "Zope Viewlets",
"version": "5.0",
"split_keywords": [
"zope",
"web",
"html",
"ui",
"viewlet",
"pattern"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "febc5dccf8db564dce1cb621ddce4687ea380f75e045bb92494ff84cd5aa3cae",
"md5": "7649a2af2a1f7dc8e28b89c7e3afdc4f",
"sha256": "ba16d475bdeb5532f39de5755de8a5a06ed0d74a63af9d052286b658e6795eba"
},
"downloads": -1,
"filename": "zope.viewlet-5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7649a2af2a1f7dc8e28b89c7e3afdc4f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 33022,
"upload_time": "2023-03-27T11:46:18",
"upload_time_iso_8601": "2023-03-27T11:46:18.029859Z",
"url": "https://files.pythonhosted.org/packages/fe/bc/5dccf8db564dce1cb621ddce4687ea380f75e045bb92494ff84cd5aa3cae/zope.viewlet-5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2260a924e90e0ba976597f9c817900e93a59b6fa02ad3d49dd88a76d3901509f",
"md5": "82465c5c0f756ce92d631c228d5d0e33",
"sha256": "dba387c407c918244030c1a771773fec8e4167b0464e2f82474f489b8b306300"
},
"downloads": -1,
"filename": "zope.viewlet-5.0.tar.gz",
"has_sig": false,
"md5_digest": "82465c5c0f756ce92d631c228d5d0e33",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 33743,
"upload_time": "2023-03-27T11:46:20",
"upload_time_iso_8601": "2023-03-27T11:46:20.314008Z",
"url": "https://files.pythonhosted.org/packages/22/60/a924e90e0ba976597f9c817900e93a59b6fa02ad3d49dd88a76d3901509f/zope.viewlet-5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-03-27 11:46:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "zopefoundation",
"github_project": "zope.viewlet",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "zope.viewlet"
}