diff options
| author | Joe Dallago <jd.dallago@gmail.com> | 2011-03-24 23:38:27 -0500 |
|---|---|---|
| committer | Joe Dallago <jd.dallago@gmail.com> | 2011-03-24 23:38:27 -0500 |
| commit | 758464303c00de745672d6c3e27566e3bc52859e (patch) | |
| tree | 5d369776bfcc601734a20dfb976ed0852b8610a1 /docs/tutorials/wiki2/installation.rst | |
| parent | 95e799d074de2e81914d513b4c331df1e738c00e (diff) | |
| download | pyramid-758464303c00de745672d6c3e27566e3bc52859e.tar.gz pyramid-758464303c00de745672d6c3e27566e3bc52859e.tar.bz2 pyramid-758464303c00de745672d6c3e27566e3bc52859e.zip | |
It was decided that pyramid would undergo a terminology change.
'Paster templates' will now be refered to as 'scaffolds,' while
'rendered templates' will remain as 'templates.' I have changed
the docs to reflect this change in terminology.
Diffstat (limited to 'docs/tutorials/wiki2/installation.rst')
| -rw-r--r-- | docs/tutorials/wiki2/installation.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst index ed81e3774..b5c73e9c5 100644 --- a/docs/tutorials/wiki2/installation.rst +++ b/docs/tutorials/wiki2/installation.rst @@ -83,8 +83,8 @@ Making a Project ================ Your next step is to create a project. :app:`Pyramid` supplies a -variety of templates to generate sample projects. We will use the -``pyramid_routesalchemy`` template, which generates an application +variety of scaffolds to generate sample projects. We will use the +``pyramid_routesalchemy`` scaffold, which generates an application that uses :term:`SQLAlchemy` and :term:`URL dispatch`. The below instructions assume your current working directory is the @@ -103,7 +103,7 @@ On Windows: c:\pyramidtut> Scripts\paster create -t pyramid_routesalchemy tutorial .. note:: If you are using Windows, the ``pyramid_routesalchemy`` - Paster template may not deal gracefully with installation into a + scaffold may not 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 directories that do not contain spaces in their paths. @@ -217,10 +217,10 @@ Visit the Application in a Browser In a browser, visit ``http://localhost:6543/``. You will see the generated application's default page. -Decisions the ``pyramid_routesalchemy`` Template Has Made For You +Decisions the ``pyramid_routesalchemy`` Scaffold Has Made For You ================================================================= -Creating a project using the ``pyramid_routesalchemy`` template makes +Creating a project using the ``pyramid_routesalchemy`` scaffold makes the following assumptions: - you are willing to use :term:`SQLAlchemy` as a database access tool |
