summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorkenmanheimer <ken.manheimer@gmail.com>2011-11-08 15:02:46 -0800
committerkenmanheimer <ken.manheimer@gmail.com>2011-11-08 15:02:46 -0800
commit19799769801c2e0bdca18f6f1e7336c1a2a07eb6 (patch)
tree0cdc5298ac0e91eccded49e0784af13e6230452d /docs
parente909e61f1b182fce547782f28855d01b6847ca5a (diff)
downloadpyramid-19799769801c2e0bdca18f6f1e7336c1a2a07eb6.tar.gz
pyramid-19799769801c2e0bdca18f6f1e7336c1a2a07eb6.tar.bz2
pyramid-19799769801c2e0bdca18f6f1e7336c1a2a07eb6.zip
Track change of the scaffolding file names, removing 'pyramid_' prefix.
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/wiki/NOTE-relocatable.txt2
-rw-r--r--docs/tutorials/wiki/basiclayout.rst6
-rw-r--r--docs/tutorials/wiki/installation.rst8
-rw-r--r--docs/tutorials/wiki/tests.rst2
4 files changed, 9 insertions, 9 deletions
diff --git a/docs/tutorials/wiki/NOTE-relocatable.txt b/docs/tutorials/wiki/NOTE-relocatable.txt
index 7e42cf573..cec2639f3 100644
--- a/docs/tutorials/wiki/NOTE-relocatable.txt
+++ b/docs/tutorials/wiki/NOTE-relocatable.txt
@@ -1,6 +1,6 @@
We specifically use relative package references where possible so this demo
works even if the user names their package (in the 'bin/paster create -t
-pyramid_zodb ...' step) something other than 'tutorial'.
+zodb ...' step) something other than 'tutorial'.
Specifically:
diff --git a/docs/tutorials/wiki/basiclayout.rst b/docs/tutorials/wiki/basiclayout.rst
index 311352f5b..897775428 100644
--- a/docs/tutorials/wiki/basiclayout.rst
+++ b/docs/tutorials/wiki/basiclayout.rst
@@ -2,7 +2,7 @@
Basic Layout
============
-The starter files generated by the ``pyramid_zodb`` scaffold are basic, but
+The starter files generated by the ``zodb`` scaffold are basic, but
they provide a good orientation for the high-level patterns common to most
:term:`traversal` -based :app:`Pyramid` (and :term:`ZODB` based) projects.
@@ -69,7 +69,7 @@ hierarchically in a :term:`resource tree`. This tree is consulted by
tree represents the site structure, but it *also* represents the
:term:`domain model` of the application, because each resource is a node
stored persistently in a :term:`ZODB` database. The ``models.py`` file is
-where the ``pyramid_zodb`` scaffold put the classes that implement our
+where the ``zodb`` scaffold put the classes that implement our
resource objects, each of which happens also to be a domain model object.
Here is the source for ``models.py``:
@@ -144,7 +144,7 @@ Let's try to understand the components in this module:
#. *Lines 5-6*. We define a :term:`view callable` named ``my_view``, which
we decorated in the step above. This view callable is a *function* we
- write generated by the ``pyramid_zodb`` scaffold that is given a
+ write generated by the ``zodb`` scaffold that is given a
``request`` and which returns a dictionary. The ``mytemplate.pt``
:term:`renderer` named by the asset specification in the step above will
convert this dictionary to a :term:`response` on our behalf.
diff --git a/docs/tutorials/wiki/installation.rst b/docs/tutorials/wiki/installation.rst
index c90306e73..330b17c86 100644
--- a/docs/tutorials/wiki/installation.rst
+++ b/docs/tutorials/wiki/installation.rst
@@ -224,7 +224,7 @@ On Windows:
c:\pyramidtut\tutorial> ..\Scripts\nosetests --cover-package=tutorial ^
--cover-erase --with-coverage
-Looks like the code in the ``pyramid_zodb`` scaffold for ZODB projects is
+Looks like the code in the ``zodb`` scaffold for ZODB projects is
missing some test coverage, particularly in the file named
``models.py``.
@@ -261,10 +261,10 @@ page. You can read more about the purpose of the icon at
:ref:`debug_toolbar`. It allows you to get information about your
application while you develop.
-Decisions the ``pyramid_zodb`` Scaffold Has Made For You
-========================================================
+Decisions the ``zodb`` Scaffold Has Made For You
+================================================
-Creating a project using the ``pyramid_zodb`` scaffold makes the following
+Creating a project using the ``zodb`` scaffold makes the following
assumptions:
- you are willing to use :term:`ZODB` as persistent storage
diff --git a/docs/tutorials/wiki/tests.rst b/docs/tutorials/wiki/tests.rst
index 841baa8d1..c03b6b958 100644
--- a/docs/tutorials/wiki/tests.rst
+++ b/docs/tutorials/wiki/tests.rst
@@ -15,7 +15,7 @@ class for each model class, and we'll write a test class for the
``appmaker``.
To do so, we'll retain the ``tutorial.tests.ViewTests`` class provided as a
-result of the ``pyramid_zodb`` project generator. We'll add three test
+result of the ``zodb`` project generator. We'll add three test
classes: one for the ``Page`` model named ``PageModelTests``, one for the
``Wiki`` model named ``WikiModelTests``, and one for the appmaker named
``AppmakerTests``.