summaryrefslogtreecommitdiff
path: root/docs/tutorials/zeo/index.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-09 03:54:45 -0500
committerChris McDonough <chrism@plope.com>2010-11-09 03:54:45 -0500
commitfd5ae92bd218b72a7a923e406eee023afe024dc0 (patch)
tree17fd402d2d06a0360f813e682e73bb780874a2a4 /docs/tutorials/zeo/index.rst
parentf383367b91b02b28e2beec8132241003aacbedfd (diff)
downloadpyramid-fd5ae92bd218b72a7a923e406eee023afe024dc0.tar.gz
pyramid-fd5ae92bd218b72a7a923e406eee023afe024dc0.tar.bz2
pyramid-fd5ae92bd218b72a7a923e406eee023afe024dc0.zip
- All references to Pyramid-the-application were changed from :mod:`pyramid`
to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal)
Diffstat (limited to 'docs/tutorials/zeo/index.rst')
-rw-r--r--docs/tutorials/zeo/index.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/tutorials/zeo/index.rst b/docs/tutorials/zeo/index.rst
index a63afcf90..229ec2ffc 100644
--- a/docs/tutorials/zeo/index.rst
+++ b/docs/tutorials/zeo/index.rst
@@ -4,18 +4,18 @@ Using ZODB with ZEO
===================
:term:`ZODB` is a Python object persistence mechanism. :term:`ZODB`
-works well as a storage mechanism for :mod:`pyramid` applications,
+works well as a storage mechanism for :app:`Pyramid` applications,
especially in applications that use :term:`traversal`.
:term:`ZEO` is an extension to ZODB which allows more than one process
to simultaneously communicate with a ZODB storage. Making a ZODB
database accessible to more than one process means that you can debug
-your application objects at the same time that a :mod:`pyramid`
+your application objects at the same time that a :app:`Pyramid`
server that accesses the database is running, and will also allow your
application to run under multiprocess configurations, such as those
exposed by :term:`mod_wsgi`.
-The easiest way to get started with ZODB in a :mod:`pyramid` application is
+The easiest way to get started with ZODB in a :app:`Pyramid` application is
to use the ZODB ``pyramid_zodb`` paster template. See
:ref:`additional_paster_templates` for more information about using this
template. However, the Paster template does not set up a ZEO-capable
@@ -24,7 +24,7 @@ application. This chapter shows you how to do that "from scratch".
Installing Dependencies
-----------------------
-#. Edit your :mod:`pyramid` application's ``setup.py`` file, adding
+#. Edit your :app:`Pyramid` application's ``setup.py`` file, adding
the following packages to the ``install_requires`` of the
application:
@@ -142,7 +142,7 @@ Configuration
</blobstorage>
#. For the purposes of this tutorial we'll assume that you want your
- :mod:`pyramid` application's :term:`root` object to be a
+ :app:`Pyramid` application's :term:`root` object to be a
"folderish" object. To achieve this, change your application's
``models.py`` file to look like the below: