Metadata-Version: 2.1
Name: Products.ZODBMountPoint
Version: 1.3
Summary: Zope ZODB mount point support.
Home-page: https://github.com/zopefoundation/Products.ZODBMountPoint
Author: Zope Foundation and Contributors
Author-email: zope-dev@zope.org
License: ZPL 2.1
Project-URL: Issue Tracker, https://github.com/zopefoundation/Products.ZODBMountPoint/issues
Project-URL: Sources, https://github.com/zopefoundation/Products.ZODBMountPoint
Keywords: Zope ZODB mount
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Web Environment
Classifier: Framework :: Zope
Classifier: Framework :: Zope :: 4
Classifier: Framework :: Zope :: 5
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
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
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
License-File: LICENSE.txt

.. image:: https://github.com/zopefoundation/Products.ZODBMountPoint/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/Products.ZODBMountPoint/actions/workflows/tests.yml

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

.. image:: https://img.shields.io/pypi/v/Products.ZODBMountPoint.svg
   :target: https://pypi.org/project/Products.ZODBMountPoint/
   :alt: Current version on PyPI

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

Overview
========

Zope ZODB mount point support


Usage example
-------------
You can mount additional storages into the ZODB as seen by the Zope client 
by adding ``zodb_db`` configurations in your Zope configuration file and
specifying where they show up. This example uses the
ZODB `MappingStorage
<https://zodb-docs.readthedocs.io/en/latest/reference/storages.html#mappingstorage>`_
for a simple temporary folder at ``/temp_folder``. After a Zope restart, visit
the Zope Management Interface and select `ZODB Mount Point` from the list of
addable items to view and activate all available mount points::

  <zodb_db temporary>
      <mappingstorage>
        name Temporary database
      </mappingstorage>
      mount-point /temp_folder
      container-class Products.TemporaryFolder.TemporaryContainer
  </zodb_db>

For details on session configuration, see `the Zope book chapter on session
management <https://zope.readthedocs.io/en/latest/zopebook/Sessions.html>`_.

Changelog
=========

For older changes please refer to the change log for
``Products.TemporaryFolder`` prior to version 5.4 at
https://github.com/zopefoundation/Products.TemporaryFolder/blob/master/CHANGES.rst


1.3 (2022-12-16)
----------------

- Fix insidious buildout configuration bug for tests against Zope 4.

- Add support for Python 3.10 and 3.11.


1.2 (2021-07-06)
----------------

- Update package configuration.

- fix deprecation warning
  (`#4 <https://github.com/zopefoundation/Products.ZODBMountPoint/issues/4>`_)


1.1 (2021-03-16)
----------------

- Add support for Python 3.9.


1.0 (2020-08-31)
----------------

- Split ``Products.ZODBMountPoint`` out of ``Products.TemporaryFolder``
  after version 5.3.
