zope.app.catalog


Namezope.app.catalog JSON
Version 5.0 PyPI version JSON
download
home_pagehttp://github.com/zopefoundation/zope.app.catalog
SummaryManagement pages for Zope Catalog
upload_time2024-11-12 08:05:31
maintainerNone
docs_urlNone
authorZope Corporation and Contributors
requires_python>=3.8
licenseZPL 2.1
keywords zope3 catalog index
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            This package provides ZMI-based browser management pages and menu items
for zope.catalog - the cataloging and indexing framework for Zope 3.


=======
CHANGES
=======

5.0 (2024-11-12)
----------------

- Drop support for Python 2.7, 3.4, 3.5, 3.6, 3.7.

- Drop support for PyPy3 because of breaking tests.

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


4.0.0 (2017-05-05)
------------------

- Add support for Python 3.4, 3.5, 3.6 and PyPy.

- Remove test dependency on ``zope.app.testing`` and
  ``zope.app.zcmlfiles``, among others.


3.8.1 (2010-01-08)
------------------

- Removed unneeded dependencies on zope.app.publisher and zope.app.form, moved
  zope.app.intid to the test dependencies.

- Import hooks functionality from zope.component after it was moved there from
  zope.site. This lifts the test dependency on zope.site.

- Use new zope.publisher that requires zope.login.

3.8.0 (2009-02-01)
------------------

- Move most of this package's code to new ``zope.catalog`` package,
  leaving only ZMI-related views and backward-compatibility imports
  here.

3.7.0 (2009-01-31)
------------------

- Change catalog's addMenuItem permission to zope.ManageServices
  as it doesn't make any sense to add an empty catalog that you
  can't modify with zope.ManageContent permission and it's completely
  useless without indexes. So there's no need to show a menu item.

- Replaced dependency on `zope.app.container` with a lighter-weight
  dependency upon the newly refactored `zope.container` package.

3.6.0 (2009-01-03)
------------------

- Make TextIndex addform use default values as specified in
  zope.app.catalog.text.ITextIndex interface. Also, change
  "searchableText" to "getSearchableText" there, as it's the
  right value.

- Add Keyword (case-insensitive and case-sensitive) catalog
  indices. It's now possible to use them, because ones in
  zope.index now implement IIndexSearch interface.

- Add support for sorting, reversing and limiting result set
  in the ``searchResults`` method, using new IIndexSort interface
  features of zope.index.

3.5.2 (2008-12-28)
------------------

- Remove testing dependencies from install_requires.

3.5.1 (2007-10-31)
------------------

- Resolve ``ZopeSecurityPolicy`` deprecation warning.


3.5.0 (2007-10-11)
------------------

- Updated some meta-data.

- Move ``ftests.py`` to ``tests.py``.


3.5.0a3 (2007-09-27)
--------------------

- removed some deprecations


3.5.0a2 (2007-09-21)
--------------------

- bugfix: passing the context to getAllUtilitiesRegisteredFor in all
  eventhandlers because no catalog was found which was located in a
  sub site and for example the ObjectModifiesEvent get fired from somewhere
  in the root.


3.5.0a1 (2007-06-26)
--------------------

- Added marker interfaces to prevent automatic indexing (see: ``event.txt``)

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/zopefoundation/zope.app.catalog",
    "name": "zope.app.catalog",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "zope3 catalog index",
    "author": "Zope Corporation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/6e/93/2e116ecdcbd2f2bcb9ea3869552fdd1ebdd7a57ee1e887a71a96d1776f90/zope_app_catalog-5.0.tar.gz",
    "platform": null,
    "description": "This package provides ZMI-based browser management pages and menu items\nfor zope.catalog - the cataloging and indexing framework for Zope 3.\n\n\n=======\nCHANGES\n=======\n\n5.0 (2024-11-12)\n----------------\n\n- Drop support for Python 2.7, 3.4, 3.5, 3.6, 3.7.\n\n- Drop support for PyPy3 because of breaking tests.\n\n- Add support for Python 3.8, 3.9, 3.10, 3.11, 3.12, 3.13.\n\n\n4.0.0 (2017-05-05)\n------------------\n\n- Add support for Python 3.4, 3.5, 3.6 and PyPy.\n\n- Remove test dependency on ``zope.app.testing`` and\n  ``zope.app.zcmlfiles``, among others.\n\n\n3.8.1 (2010-01-08)\n------------------\n\n- Removed unneeded dependencies on zope.app.publisher and zope.app.form, moved\n  zope.app.intid to the test dependencies.\n\n- Import hooks functionality from zope.component after it was moved there from\n  zope.site. This lifts the test dependency on zope.site.\n\n- Use new zope.publisher that requires zope.login.\n\n3.8.0 (2009-02-01)\n------------------\n\n- Move most of this package's code to new ``zope.catalog`` package,\n  leaving only ZMI-related views and backward-compatibility imports\n  here.\n\n3.7.0 (2009-01-31)\n------------------\n\n- Change catalog's addMenuItem permission to zope.ManageServices\n  as it doesn't make any sense to add an empty catalog that you\n  can't modify with zope.ManageContent permission and it's completely\n  useless without indexes. So there's no need to show a menu item.\n\n- Replaced dependency on `zope.app.container` with a lighter-weight\n  dependency upon the newly refactored `zope.container` package.\n\n3.6.0 (2009-01-03)\n------------------\n\n- Make TextIndex addform use default values as specified in\n  zope.app.catalog.text.ITextIndex interface. Also, change\n  \"searchableText\" to \"getSearchableText\" there, as it's the\n  right value.\n\n- Add Keyword (case-insensitive and case-sensitive) catalog\n  indices. It's now possible to use them, because ones in\n  zope.index now implement IIndexSearch interface.\n\n- Add support for sorting, reversing and limiting result set\n  in the ``searchResults`` method, using new IIndexSort interface\n  features of zope.index.\n\n3.5.2 (2008-12-28)\n------------------\n\n- Remove testing dependencies from install_requires.\n\n3.5.1 (2007-10-31)\n------------------\n\n- Resolve ``ZopeSecurityPolicy`` deprecation warning.\n\n\n3.5.0 (2007-10-11)\n------------------\n\n- Updated some meta-data.\n\n- Move ``ftests.py`` to ``tests.py``.\n\n\n3.5.0a3 (2007-09-27)\n--------------------\n\n- removed some deprecations\n\n\n3.5.0a2 (2007-09-21)\n--------------------\n\n- bugfix: passing the context to getAllUtilitiesRegisteredFor in all\n  eventhandlers because no catalog was found which was located in a\n  sub site and for example the ObjectModifiesEvent get fired from somewhere\n  in the root.\n\n\n3.5.0a1 (2007-06-26)\n--------------------\n\n- Added marker interfaces to prevent automatic indexing (see: ``event.txt``)\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Management pages for Zope Catalog",
    "version": "5.0",
    "project_urls": {
        "Homepage": "http://github.com/zopefoundation/zope.app.catalog"
    },
    "split_keywords": [
        "zope3",
        "catalog",
        "index"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9890bbc46940a8c2869ece0d89fcebe7072db661ce777bf243b41e3526735566",
                "md5": "dfbdfb517e7457a0a5883accdfd03f80",
                "sha256": "648d209d8c6c50428ffc841cb7d9341b857b971ff33b288b921fc55a56408fd3"
            },
            "downloads": -1,
            "filename": "zope.app.catalog-5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dfbdfb517e7457a0a5883accdfd03f80",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 19434,
            "upload_time": "2024-11-12T08:05:29",
            "upload_time_iso_8601": "2024-11-12T08:05:29.496735Z",
            "url": "https://files.pythonhosted.org/packages/98/90/bbc46940a8c2869ece0d89fcebe7072db661ce777bf243b41e3526735566/zope.app.catalog-5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e932e116ecdcbd2f2bcb9ea3869552fdd1ebdd7a57ee1e887a71a96d1776f90",
                "md5": "ba9e454af6da5aaf7cc06d9b79ebb8d8",
                "sha256": "38389dc9e42fa3f6127f401b761431eebd35cc74925d9bef924690440e9e602d"
            },
            "downloads": -1,
            "filename": "zope_app_catalog-5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ba9e454af6da5aaf7cc06d9b79ebb8d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 16446,
            "upload_time": "2024-11-12T08:05:31",
            "upload_time_iso_8601": "2024-11-12T08:05:31.063636Z",
            "url": "https://files.pythonhosted.org/packages/6e/93/2e116ecdcbd2f2bcb9ea3869552fdd1ebdd7a57ee1e887a71a96d1776f90/zope_app_catalog-5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-12 08:05:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.app.catalog",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.app.catalog"
}
        
Elapsed time: 0.51876s