summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/installation.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/wiki/installation.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/wiki/installation.rst')
-rw-r--r--docs/tutorials/wiki/installation.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/tutorials/wiki/installation.rst b/docs/tutorials/wiki/installation.rst
index 822e0bd22..c55c310ef 100644
--- a/docs/tutorials/wiki/installation.rst
+++ b/docs/tutorials/wiki/installation.rst
@@ -130,9 +130,9 @@ Preparation, Windows
Making a Project
================
-Your next step is to create a project. :app:`Pyramid` supplies a
-variety of scaffolds to generate sample projects. For this tutorial,
-we will use the :term:`ZODB` -oriented scaffold named ``pyramid_zodb``.
+Your next step is to create a project. :app:`Pyramid` supplies a variety of
+scaffolds to generate sample projects. For this tutorial, we will use the
+:term:`ZODB` -oriented scaffold named ``zodb``.
The below instructions assume your current working directory is the
"virtualenv" named "pyramidtut".
@@ -141,15 +141,15 @@ On UNIX:
.. code-block:: text
- $ bin/paster create -t pyramid_zodb tutorial
+ $ bin/pcreate -s zodb tutorial
On Windows:
.. code-block:: text
- c:\pyramidtut> Scripts\paster create -t pyramid_zodb tutorial
+ c:\pyramidtut> Scripts\pcreate -s zodb tutorial
-.. note:: If you are using Windows, the ``pyramid_zodb`` Paster scaffold
+.. note:: If you are using Windows, the ``zodb`` scaffold
doesn't currently deal gracefully with installation into a location
that contains spaces in the path. If you experience startup
problems, try putting both the virtualenv and the project into
@@ -207,13 +207,13 @@ On UNIX:
.. code-block:: text
- $ ../bin/paster serve development.ini --reload
+ $ ../bin/pserve development.ini --reload
On Windows:
.. code-block:: text
- c:\pyramidtut\tutorial> ..\Scripts\paster serve development.ini --reload
+ c:\pyramidtut\tutorial> ..\Scripts\pserve development.ini --reload
Exposing Test Coverage Information
==================================