Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Pylons/pyramid
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed May 3, 2012
2 parents 561a443 + bd90c4f commit 1e74e6f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions docs/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -922,9 +922,9 @@ Glossary
http://docs.pylonsproject.org/projects/pyramid_debugtoolbar/dev/ .

scaffold
A project template that helps users get started writing a Pyramid
application quickly. Scaffolds are usually used via the ``pcreate``
command.
A project template that generates some of the major parts of a Pyramid
application and helps users to quickly get started writing larger
applications. Scaffolds are usually used via the ``pcreate`` command.

pyramid_exclog
A package which logs Pyramid application exception (error) information
Expand Down
4 changes: 2 additions & 2 deletions docs/narr/commandline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ to the console.

You can add request header values by using the ``--header`` option::

$ bin/prequest --header=Host=example.com development.ini /
$ bin/prequest --header=Host:example.com development.ini /

Headers are added to the WSGI environment by converting them to their
CGI/WSGI equivalents (e.g. ``Host=example.com`` will insert the ``HTTP_HOST``
Expand Down Expand Up @@ -718,7 +718,7 @@ we'll pretend you have a distribution with a package in it named
def settings_show():
description = """\
Print the deployment settings for a Pyramid application. Example:
'psettings deployment.ini'
'show_settings deployment.ini'
"""
usage = "usage: %prog config_uri"
parser = optparse.OptionParser(
Expand Down
7 changes: 4 additions & 3 deletions docs/tutorials/wiki/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,10 @@ Preparation, Windows
Make 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 ``zodb``.
Your next step is to create a project. For this tutorial, we will use the
:term:`scaffold` named ``zodb``, which generates an application
that uses :term:`ZODB` and :term:`traversal`. :app:`Pyramid`
supplies a variety of scaffolds to generate sample projects.

The below instructions assume your current working directory is the
"virtualenv" named "pyramidtut".
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/wiki2/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ Preparation, Windows
Making a Project
================

Your next step is to create a project. :app:`Pyramid` supplies a
variety of scaffolds to generate sample projects. We will use the
``alchemy`` scaffold, which generates an application
that uses :term:`SQLAlchemy` and :term:`URL dispatch`.
Your next step is to create a project. For this tutorial, we will use the
:term:`scaffold` named ``alchemy``, which generates an application
that uses :term:`SQLAlchemy` and :term:`URL dispatch`. :app:`Pyramid`
supplies a variety of scaffolds to generate sample projects.

The below instructions assume your current working directory is the
"virtualenv" named "pyramidtut".
Expand Down

0 comments on commit 1e74e6f

Please sign in to comment.