zope.browserpage


Namezope.browserpage JSON
Version 5.0 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.browserpage
SummaryZCML directives for configuring browser views for Zope.
upload_time2023-01-19 08:25:46
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ======================
 ``zope.browserpage``
======================

.. image:: https://img.shields.io/pypi/v/zope.browserpage.svg
        :target: https://pypi.python.org/pypi/zope.browserpage/
        :alt: Latest release

.. image:: https://img.shields.io/pypi/pyversions/zope.browserpage.svg
        :target: https://pypi.org/project/zope.browserpage/
        :alt: Supported Python versions

.. image:: https://github.com/zopefoundation/zope.browserpage/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/zope.browserpage/actions/workflows/tests.yml

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.browserpage/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/zope.browserpage?branch=master

.. note::

   This package is at present not reusable without depending on a large
   chunk of the Zope Toolkit and its assumptions. It is maintained by the
   `Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.

This package provides ZCML directives for configuring browser views.
More specifically it defines the following ZCML directives:

- ``browser:page``
- ``browser:pages``
- ``browser:view``

These directives also support menu item registration for pages, when
``zope.browsermenu`` package is installed. Otherwise, they simply ignore
the menu attribute.


=========
 Changes
=========

5.0 (2023-01-19)
================

- Drop support for Python 2.7, 3.5, 3.6.

- Add support for Python 3.8, 3.9, 3.10, 3.11.

- Drop support for running the tests using ``python setup.py test``.
  (`#11 <https://github.com/zopefoundation/zope.browserpage/issues/11>`_)


4.4.0 (2019-06-18)
==================

- Fix regression in ``allowed_attributes`` and ``allowed_interface``.
  (`#7 <https://github.com/zopefoundation/zope.browserpage/pull/7>`_)

- Drop support for Python 3.4.


4.3.0 (2018-10-05)
==================

- Add support for Python 3.7.


4.2.0 (2017-08-02)
==================

- Add support for Python 3.5 and 3.6.

- Drop support for Python 2.6 and 3.3.


4.1.0 (2014-12-24)
==================

- Fix deprecated unittest methods.

- Add explicit support for Python 3.4.

- Add explicit support for PyPy.


4.1.0a1 (2013-02-22)
====================

- Add support for Python 3.3.


4.0.0 (2012-07-04)
==================

- When registering views, no longer pass the deprecated 'layer' agrument
  to ``zope.component.registerAdapter``.  Instead, pass ``(for_, layer)``
  as expected (forward-compatibility with ``zope.component`` 4.0.0).

- Replace deprecated ``zope.interface.implements`` usage with equivalent
  ``zope.interface.implementer`` decorator.

- Drop support for Python 2.4 and 2.5.


3.12.2 (2010-05-24)
===================

- Fix unit tests broken under Python 2.4 by the switch to the standard
  library ``doctest`` module.


3.12.1 (2010-04-30)
===================

- Prefer the standard library's ``doctest`` module to the one from
  ``zope.testing``.


3.12.0 (2010-04-26)
===================

- Move the implementation of ``tales:expressiontype`` here from
  ``zope.app.pagetemplate``.


3.11.0 (2009-12-22)
===================

- Move the named template implementation here from ``zope.app.pagetemplate``.


3.10.1 (2009-12-22)
===================

- Depend on the ``untrustedpython`` extra of ``zope.security``, since we
  import from ``zope.pagetemplate.engine``.


3.10.0 (2009-12-22)
===================

- Remove the dependency on ``zope.app.pagetemplate`` by moving
  ``viewpagetemplatefile``, ``simpleviewclass`` and
  ``metaconfigure.registerType`` into this package.


3.9.0 (2009-08-27)
==================

- Initial release. This package was split off from ``zope.app.publisher``.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/zope.browserpage",
    "name": "zope.browserpage",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/ac/40/b03dd4bc87478001ebc714e6b538a264449d3db52249650d130b13f3be9c/zope.browserpage-5.0.tar.gz",
    "platform": null,
    "description": "======================\n ``zope.browserpage``\n======================\n\n.. image:: https://img.shields.io/pypi/v/zope.browserpage.svg\n        :target: https://pypi.python.org/pypi/zope.browserpage/\n        :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.browserpage.svg\n        :target: https://pypi.org/project/zope.browserpage/\n        :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.browserpage/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/zope.browserpage/actions/workflows/tests.yml\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.browserpage/badge.svg?branch=master\n        :target: https://coveralls.io/github/zopefoundation/zope.browserpage?branch=master\n\n.. note::\n\n   This package is at present not reusable without depending on a large\n   chunk of the Zope Toolkit and its assumptions. It is maintained by the\n   `Zope Toolkit project <http://docs.zope.org/zopetoolkit/>`_.\n\nThis package provides ZCML directives for configuring browser views.\nMore specifically it defines the following ZCML directives:\n\n- ``browser:page``\n- ``browser:pages``\n- ``browser:view``\n\nThese directives also support menu item registration for pages, when\n``zope.browsermenu`` package is installed. Otherwise, they simply ignore\nthe menu attribute.\n\n\n=========\n Changes\n=========\n\n5.0 (2023-01-19)\n================\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Add support for Python 3.8, 3.9, 3.10, 3.11.\n\n- Drop support for running the tests using ``python setup.py test``.\n  (`#11 <https://github.com/zopefoundation/zope.browserpage/issues/11>`_)\n\n\n4.4.0 (2019-06-18)\n==================\n\n- Fix regression in ``allowed_attributes`` and ``allowed_interface``.\n  (`#7 <https://github.com/zopefoundation/zope.browserpage/pull/7>`_)\n\n- Drop support for Python 3.4.\n\n\n4.3.0 (2018-10-05)\n==================\n\n- Add support for Python 3.7.\n\n\n4.2.0 (2017-08-02)\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.1.0 (2014-12-24)\n==================\n\n- Fix deprecated unittest methods.\n\n- Add explicit support for Python 3.4.\n\n- Add explicit support for PyPy.\n\n\n4.1.0a1 (2013-02-22)\n====================\n\n- Add support for Python 3.3.\n\n\n4.0.0 (2012-07-04)\n==================\n\n- When registering views, no longer pass the deprecated 'layer' agrument\n  to ``zope.component.registerAdapter``.  Instead, pass ``(for_, layer)``\n  as expected (forward-compatibility with ``zope.component`` 4.0.0).\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.12.2 (2010-05-24)\n===================\n\n- Fix unit tests broken under Python 2.4 by the switch to the standard\n  library ``doctest`` module.\n\n\n3.12.1 (2010-04-30)\n===================\n\n- Prefer the standard library's ``doctest`` module to the one from\n  ``zope.testing``.\n\n\n3.12.0 (2010-04-26)\n===================\n\n- Move the implementation of ``tales:expressiontype`` here from\n  ``zope.app.pagetemplate``.\n\n\n3.11.0 (2009-12-22)\n===================\n\n- Move the named template implementation here from ``zope.app.pagetemplate``.\n\n\n3.10.1 (2009-12-22)\n===================\n\n- Depend on the ``untrustedpython`` extra of ``zope.security``, since we\n  import from ``zope.pagetemplate.engine``.\n\n\n3.10.0 (2009-12-22)\n===================\n\n- Remove the dependency on ``zope.app.pagetemplate`` by moving\n  ``viewpagetemplatefile``, ``simpleviewclass`` and\n  ``metaconfigure.registerType`` into this package.\n\n\n3.9.0 (2009-08-27)\n==================\n\n- Initial release. This package was split off from ``zope.app.publisher``.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "ZCML directives for configuring browser views for Zope.",
    "version": "5.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2f4882df7f21a3d92d73a21ae30a03d109894af36666ae13b69401f3cfe4b0b",
                "md5": "c4066ec3fd8bafd1e894dacc25934c31",
                "sha256": "c67cade20d74744e36c281d450166b4300713c8064a285008ac635cc87ae21c5"
            },
            "downloads": -1,
            "filename": "zope.browserpage-5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c4066ec3fd8bafd1e894dacc25934c31",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 32082,
            "upload_time": "2023-01-19T08:25:45",
            "upload_time_iso_8601": "2023-01-19T08:25:45.330013Z",
            "url": "https://files.pythonhosted.org/packages/c2/f4/882df7f21a3d92d73a21ae30a03d109894af36666ae13b69401f3cfe4b0b/zope.browserpage-5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac40b03dd4bc87478001ebc714e6b538a264449d3db52249650d130b13f3be9c",
                "md5": "5ab116a2eabe74e0b052b91a946e1798",
                "sha256": "62d8e983cf55d5a07df91c5f8ecb412d75c762ca31058a8ee336057b4662bb2a"
            },
            "downloads": -1,
            "filename": "zope.browserpage-5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5ab116a2eabe74e0b052b91a946e1798",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 23785,
            "upload_time": "2023-01-19T08:25:46",
            "upload_time_iso_8601": "2023-01-19T08:25:46.922977Z",
            "url": "https://files.pythonhosted.org/packages/ac/40/b03dd4bc87478001ebc714e6b538a264449d3db52249650d130b13f3be9c/zope.browserpage-5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-19 08:25:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "zopefoundation",
    "github_project": "zope.browserpage",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.browserpage"
}
        
Elapsed time: 0.02884s