Metadata-Version: 2.1
Name: grokcore.content
Version: 4.0
Summary: Base content types for Grok
Home-page: http://grok.zope.org
Download-URL: http://pypi.python.org/pypi/grokcore.content
Author: Grok Team
Author-email: grok-dev@zope.org
License: ZPL
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Framework :: Zope :: 3
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE.txt
Requires-Dist: setuptools
Requires-Dist: persistent
Requires-Dist: grokcore.component >=2.1
Requires-Dist: zope.annotation
Requires-Dist: zope.container
Requires-Dist: zope.interface
Requires-Dist: zope.lifecycleevent
Provides-Extra: test
Requires-Dist: zope.component ; extra == 'test'
Requires-Dist: zope.testing ; extra == 'test'
Requires-Dist: zope.testrunner ; extra == 'test'

This package provides base classes of basic content types.


.. contents::

Changes
=======

4.0 (2023-08-28)
----------------

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

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


3.0.2 (2018-01-12)
------------------

- Rearrange tests such that Travis CI can pick up all functional tests too.

3.0.1 (2018-01-10)
------------------

- Fix dependencies by removing ZODB3.

3.0.0 (2018-01-04)
------------------

- Use ``zope.interface.implementer`` decorator instead of
  ``zope.interface.implements`` with classes to support Python 3.

- Express support for Python 2.7, 3.4 and 3.5 and 3.6,

- Use tox for test orchestration.

1.3.1 (2016-01-29)
------------------

- Update tests.

1.3 (2015-09-30)
----------------

- Fix updateOrder that would create a new PersistentList object in the
  database each time the order is updated.

1.2 (2015-04-01)
----------------

- Introduce ObjectEditedEvent which is meant to used when the
  attribute of an object are edited. This makes possible to easily
  distinguish it from generic and container modification operations.

- Fix a bug where the OrderedContainer could get corrupted in case
  updateOrder() would have been called with a list containing multiple
  occurrences of a existing key in the mapping.

1.1 (2010-11-01)
----------------

- Use newer grokcore.component.

- Made package comply to zope.org repository policy.

1.0 (2010-02-06)
----------------

- Created ``grokcore.content`` in January 2010 by factoring basic
  component base classes out of Grok.
