summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-04 02:05:35 -0400
committerChris McDonough <chrism@plope.com>2010-11-04 02:05:35 -0400
commit1b1c9209c26578c96668bde8aa7fae2fda85003f (patch)
tree6db5b96d14eea0a27472595f53107846319b96e8 /docs/narr
parent45a63aef8277d78aad5b173329bea6a4a4bf0786 (diff)
downloadpyramid-1b1c9209c26578c96668bde8aa7fae2fda85003f.tar.gz
pyramid-1b1c9209c26578c96668bde8aa7fae2fda85003f.tar.bz2
pyramid-1b1c9209c26578c96668bde8aa7fae2fda85003f.zip
punt back to ZCML for zodb template, it will allow me to do less work to the wiki tutorial
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/project.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 08bc9e8ae..25e607174 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -32,7 +32,7 @@ Paster Templates Included with :mod:`pyramid`
------------------------------------------------
The convenience ``paster`` templates included with :mod:`pyramid`
-differ from each other on two axes:
+differ from each other on a number of axes:
- the persistence mechanism they offer (no persistence mechanism,
:term:`ZODB`, or :term:`SQLAlchemy`).
@@ -40,6 +40,8 @@ differ from each other on two axes:
- the mechanism they use to map URLs to code (:term:`traversal` or
:term:`URL dispatch`).
+- the type of configuration used (:term:`ZCML` vs. imperative configuration).
+
The included templates are these:
``pyramid_starter``
@@ -50,7 +52,8 @@ The included templates are these:
:term:`ZCML` (declarative configuration).
``pyramid_zodb``
- URL mapping via :term:`traversal` and persistence via :term:`ZODB`
+ URL mapping via :term:`traversal` and persistence via :term:`ZODB`, using
+ :term:`ZCML` (declarative configuration).
``pyramid_routesalchemy``
URL mapping via :term:`URL dispatch` and persistence via