Metadata-Version: 2.1
Name: Products.ZODBMountPoint
Version: 1.0
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 :: 4
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 :: 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://travis-ci.org/zopefoundation/Products.ZODBMountPoint.svg?branch=master
   :target: https://travis-ci.org/zopefoundation/Products.ZODBMountPoint

.. 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 (**deprecated**)
``Products.TemporaryFolder`` product to mount a temporary folder at
``/temp_folder``::

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

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.0 (2020-08-31)
----------------

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


