diff options
| author | Chris McDonough <chrism@plope.com> | 2010-11-10 15:06:45 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-11-10 15:06:45 -0500 |
| commit | 3d66b2dba3c731851a481f78a3388c7f2cb9dce5 (patch) | |
| tree | 1f7d298286420fa44286c9e58f68bc14bf5ea6f8 /docs | |
| parent | 1ad8568db0fefd9c852b6a3aa5f21b78de3a817a (diff) | |
| download | pyramid-3d66b2dba3c731851a481f78a3388c7f2cb9dce5.tar.gz pyramid-3d66b2dba3c731851a481f78a3388c7f2cb9dce5.tar.bz2 pyramid-3d66b2dba3c731851a481f78a3388c7f2cb9dce5.zip | |
mention beaker differences
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/project.rst | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst index d8d00bb0b..f47e9f293 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -42,6 +42,10 @@ differ from each other on a number of axes: - the type of configuration used (:term:`ZCML` vs. imperative configuration). +- whether or not the ``pyramid_beaker`` library is relied upon as the + sessioning implementation (as opposed to no sessioning or default + sessioning). + The included templates are these: ``pyramid_starter`` @@ -65,15 +69,17 @@ The included templates are these: ``pylons_minimal`` URL mapping via :term:`URL dispatch` and Pylons-style view handlers, - minimal setup. + minimal setup, uses ``pyramid_beaker`` as a sessioning implementation. ``pylons_basic`` - URL mapping via :term:`URL dispatch` and Pylons-style view handlers, - and some extra functionality. + URL mapping via :term:`URL dispatch` and Pylons-style view handlers, and + some extra functionality, uses ``pyramid_beaker`` as a sessioning + implementation. ``pylons_sqla`` - URL mapping via :term:`URL dispatch` and Pylons-style view handlers, - some extra functionality, and SQLAlchemy set up. + URL mapping via :term:`URL dispatch` and Pylons-style view handlers, some + extra functionality, and SQLAlchemy set up, uses ``pyramid_beaker`` as a + sessioning implementation. Each paster template makes the assumption that you want your code to live in a Python :term:`package`. Even if your application is extremely simple, it |
