summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/installation.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-04 03:35:53 -0400
committerChris McDonough <chrism@plope.com>2010-11-04 03:35:53 -0400
commitb2adfe7c10bff8edd06a76df3c638768e30b6bc3 (patch)
tree82f38a0207206d7d24686760b148536c6b9155f8 /docs/tutorials/wiki2/installation.rst
parentfb029fb6919c1e64bb12d6906bcaae8de6edfffe (diff)
downloadpyramid-b2adfe7c10bff8edd06a76df3c638768e30b6bc3.tar.gz
pyramid-b2adfe7c10bff8edd06a76df3c638768e30b6bc3.tar.bz2
pyramid-b2adfe7c10bff8edd06a76df3c638768e30b6bc3.zip
- The SQL Wiki tutorial was updated to take into account changes to the
``pyramid_routesalchemy`` paster template.
Diffstat (limited to 'docs/tutorials/wiki2/installation.rst')
-rw-r--r--docs/tutorials/wiki2/installation.rst23
1 files changed, 16 insertions, 7 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst
index ae2eb4d06..2f103272a 100644
--- a/docs/tutorials/wiki2/installation.rst
+++ b/docs/tutorials/wiki2/installation.rst
@@ -266,11 +266,20 @@ Decisions the ``pyramid_routesalchemy`` Template Has Made For You
=================================================================
Creating a project using the ``pyramid_routesalchemy`` template makes
-the assumption that you are willing to use :term:`SQLAlchemy` as a
-database access tool and :term:`url dispatch` to map URLs to code.
-:mod:`pyramid` supports any persistent storage mechanism (e.g. object
-database or filesystem files, etc). It also supports an additional
-mechanism to map URLs to code (:term:`traversal`). However, for the
-purposes of this tutorial, we'll only be using url dispatch and
-SQLAlchemy.
+the following assumptions:
+
+- you are willing to use :term:`SQLAlchemy` as a database access tool
+
+- you are willing to use :term:`url dispatch` to map URLs to code.
+
+- you want to configure your application *imperatively* (no
+ :term:`declarative configuration` such as ZCML).
+
+.. note::
+
+ :mod:`pyramid` supports any persistent storage mechanism (e.g. object
+ database or filesystem files, etc). It also supports an additional
+ mechanism to map URLs to code (:term:`traversal`). However, for the
+ purposes of this tutorial, we'll only be using url dispatch and
+ SQLAlchemy.