Metadata-Version: 2.1
Name: Products.ZODBMountPoint
Version: 1.1
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
Platform: UNKNOWN
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 :: Implementation :: CPython
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
Requires-Dist: setuptools
Requires-Dist: AccessControl
Requires-Dist: Acquisition
Requires-Dist: six
Requires-Dist: ZODB
Requires-Dist: Zope (>=4.0b5)

.. 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>`_
to mount a temporary folder at ``/temp_folder``::

  <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.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


