summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/definingmodels.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-10-06 05:40:58 -0400
committerChris McDonough <chrism@plope.com>2011-10-06 05:40:58 -0400
commit87dbfa4cd26171414d971d4f56f2aceaceb9a6eb (patch)
tree38876d7fe78e1b32763fa185f0dc9546e113671a /docs/tutorials/wiki2/definingmodels.rst
parent206a7f6eb776ff91043ce9cf4627dad20f68b937 (diff)
parent75f05a60f8754c9c5c234b9731dbc08646ba89a9 (diff)
downloadpyramid-87dbfa4cd26171414d971d4f56f2aceaceb9a6eb.tar.gz
pyramid-87dbfa4cd26171414d971d4f56f2aceaceb9a6eb.tar.bz2
pyramid-87dbfa4cd26171414d971d4f56f2aceaceb9a6eb.zip
Merge branch 'feature.glue'
Diffstat (limited to 'docs/tutorials/wiki2/definingmodels.rst')
-rw-r--r--docs/tutorials/wiki2/definingmodels.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/definingmodels.rst b/docs/tutorials/wiki2/definingmodels.rst
index 7aa2214fc..083ec0aa8 100644
--- a/docs/tutorials/wiki2/definingmodels.rst
+++ b/docs/tutorials/wiki2/definingmodels.rst
@@ -2,9 +2,9 @@
Defining the Domain Model
=========================
-The first change we'll make to our stock paster-generated application will be
-to define a :term:`domain model` constructor representing a wiki page. We'll
-do this inside our ``models.py`` file.
+The first change we'll make to our stock pcreate-generated application will
+be to define a :term:`domain model` constructor representing a wiki page.
+We'll do this inside our ``models.py`` file.
The source code for this tutorial stage can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/models/
@@ -64,7 +64,7 @@ FrontPage object to our database at startup time.
:language: python
Here, we're using a slightly different binding syntax. It is otherwise
-largely the same as the ``initialize_sql`` in the paster-generated
+largely the same as the ``initialize_sql`` in the pcreate-generated
``models.py``.
Our ``DBSession`` assignment stays the same as the original generated