summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/installation.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-04 02:20:15 -0400
committerChris McDonough <chrism@plope.com>2010-11-04 02:20:15 -0400
commitb3b7132a8c2964bf3638f0be23dcf87dca737877 (patch)
tree740ed6b6a8c791e800c51084b1efcf809b7ef71a /docs/tutorials/wiki/installation.rst
parent3940b26876f0979c31fcf89f13673757d869491f (diff)
downloadpyramid-b3b7132a8c2964bf3638f0be23dcf87dca737877.tar.gz
pyramid-b3b7132a8c2964bf3638f0be23dcf87dca737877.tar.bz2
pyramid-b3b7132a8c2964bf3638f0be23dcf87dca737877.zip
- The ZODB Wiki tutorial was updated to take into account changes to the
``pyramid_zodb`` paster template.
Diffstat (limited to 'docs/tutorials/wiki/installation.rst')
-rw-r--r--docs/tutorials/wiki/installation.rst22
1 files changed, 15 insertions, 7 deletions
diff --git a/docs/tutorials/wiki/installation.rst b/docs/tutorials/wiki/installation.rst
index 237abe7c3..9fff233c1 100644
--- a/docs/tutorials/wiki/installation.rst
+++ b/docs/tutorials/wiki/installation.rst
@@ -244,11 +244,19 @@ You will see the generated application's default page.
Decisions the ``pyramid_zodb`` Template Has Made For You
========================================================
-Creating a project using the ``pyramid_zodb`` template makes the
-assumption that you are willing to use :term:`ZODB` as persistent
-storage and :term:`traversal` to map URLs to code. :mod:`pyramid`
-supports any persistent storage mechanism (e.g. a SQL database or
-filesystem files, etc). It also supports an additional mechanism to
-map URLs to code (:term:`URL dispatch`). However, for the purposes of
-this tutorial, we'll only be using traversal and ZODB.
+Creating a project using the ``pyramid_zodb`` template makes the following
+assumptions:
+
+- you are willing to use :term:`ZODB` as persistent storage
+
+- you are willing to use :term:`traversal` to map URLs to code.
+
+- you want to use :term:`ZCML` to perform configuration.
+
+.. note::
+
+ :mod:`pyramid` supports any persistent storage mechanism (e.g. a SQL
+ database or filesystem files, etc). :mod:`pyramid` also supports an
+ additional mechanism to map URLs to code (:term:`URL dispatch`). However,
+ for the purposes of this tutorial, we'll only be using traversal and ZODB.