Metadata-Version: 1.1
Name: node.ext.zodb
Version: 1.4
Summary: Node Implementation with ZODB persistence
Home-page: http://github.com/conestack/node.ext.zodb
Author: Node Contributors
Author-email: dev@conestack.org
License: Simplified BSD
Description: .. image:: https://img.shields.io/pypi/v/node.ext.zodb.svg
            :target: https://pypi.python.org/pypi/node.ext.zodb
            :alt: Latest PyPI version
        
        .. image:: https://img.shields.io/pypi/dm/node.ext.zodb.svg
            :target: https://pypi.python.org/pypi/node.ext.zodb
            :alt: Number of PyPI downloads
        
        .. image:: https://travis-ci.org/bluedynamics/node.ext.zodb.svg?branch=master
            :target: https://travis-ci.org/bluedynamics/node.ext.zodb
        
        .. image:: https://coveralls.io/repos/github/bluedynamics/node.ext.zodb/badge.svg?branch=master
            :target: https://coveralls.io/github/bluedynamics/node.ext.zodb?branch=master
        
        ``node.ext.zodb`` is a persistent node implementation for the ZODB.
        
        For more information about ``node`` see https://pypi.python.org/pypi/node
        
        
        Source Code
        ===========
        
        The sources are in a GIT DVCS with its main branches at
        `github <http://github.com/conestack/node.ext.zodb>`_.
        
        We'd be happy to see many forks and pull-requests to make it even better.
        
        Travis-CI test state:
        
        .. image:: https://secure.travis-ci.org/bluedynamics/node.ext.zodb.png
        
        
        Python Versions
        ===============
        
        - Python 2.7, 3.4+
        
        
        Contributors
        ============
        
        - Robert Niederreiter
        - Jens Klein
        
        
        Changes
        =======
        
        1.4 (2021-10-21)
        ----------------
        
        - Implement ``_list_factory`` on ``Podict`` and ``OOBTodict`` and use
          ``PersistentList`` for internal double linked list triples to allow
          transaction property detect changes.
          [rnix, jensens]
        
        - Drop ZODB3.
          [rnix]
        
        
        1.3 (2020-07-09)
        ----------------
        
        - Access ``attrs`` when initializing nodes with ``ZODBAttributes`` behavior
          applied to avoid lazy creation. Needed to prevent ``_p_changed`` being set on
          first access.
          [rnix, 2020-06-23]
        
        - Access ``storage`` when initializing nodes with ``PodictStorage`` or
          ``OOBTodictStorage`` behaviors applied to avoid lazy creation. Needed
          to prevent ``_p_changed`` being set on first access.
          [rnix, 2020-06-23]
        
        - Use ``plumb`` instead of overriding ``__setattr__`` to change ``__parent__``
          name to ``_v_parent`` on ``ZODBBehavior``.
          [rnix, 2020-06-23]
        
        - Use ``plumb`` instead of overriding ``__getitem__`` to set parent on
          ``ZODBBehavior``.
          [rnix, 2020-02-28]
        
        
        1.2 (2017-07-18)
        ----------------
        
        - Add python 3 support.
          [rnix, 2017-06-24]
        
        - Add ``keys`` to ``OOBTodict`` and accept any number of ``*args`` and ``**kw``
          to match expected contract by ``OOBTree`` and Fix tests with ZODB 5.
          [rnix, 2017-06-22]
        
        - Add ``__nonzero__`` and ``__bool__`` to ``OOBTodict`` in order to make it
          work properly with ZODB 5.
          [rnix, 2017-06-22]
        
        - Use ``@property`` and ``@property.setter`` for ``OOBTodict.lh`` and
          ``OOBTodict.lt``.
          [rnix, 2017-06-22]
        
        
        1.1.1
        -----
        
        - Change ``ZODB`` install requirement to ``ZODB3``. Latter one is a meta
          package as of version 3.11.0 and installs ``ZODB``
          [rnix, 2017-06-19]
        
        
        1.1
        ---
        
        - Remove superfluous ``__repr__`` function from ``OOBTodict``. ``odict``
          package properly outputs class name as of version 1.6.2.
          [rnix, 2017-06-14]
        
        - Fix ``volatile_property`` to work on classes overwriting ``__getattr__``.
          [rnix, 2017-06-14]
        
        - Use ``plumbing`` decorator instead of ``__metaclass__`` and ``__plumbing__``
          class attributes.
          [rnix, 2017-06-14]
        
        
        1.0.1
        -----
        
        - Add maintenance utilities.
          [rnix, 2014-05-13]
        
        - Cleanup tests.
          [rnix, 2014-05-13]
        
        
        1.0
        ---
        
        - initial
          [rnix]
        
        
        License
        =======
        
        Copyright (c) 2012-2021, BlueDynamics Alliance, Austria, Germany, Switzerland
        Copyright (c) 2021, Node Contributors
        All rights reserved.
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        
        * Redistributions of source code must retain the above copyright notice, this
          list of conditions and the following disclaimer.
        
        * Redistributions in binary form must reproduce the above copyright notice, this
          list of conditions and the following disclaimer in the documentation and/or
          other materials provided with the distribution.
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
        ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
        WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
        ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        
Keywords: node odict zodb persistent tree
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
