diff options
| author | Carlos de la Guardia <cguardia@yahoo.com> | 2011-06-07 01:54:50 -0500 |
|---|---|---|
| committer | Carlos de la Guardia <cguardia@yahoo.com> | 2011-06-07 01:54:50 -0500 |
| commit | fd5203000d4d051b51f804af023aefe59b832029 (patch) | |
| tree | f92f1f163aed0d2c282fb674069f987fe4dfba47 /docs/tutorials/wiki/definingviews.rst | |
| parent | a5713863a80a493a1485057609578b907d04c770 (diff) | |
| parent | df75cee020e49cc4668448b83e0617b14904bfa2 (diff) | |
| download | pyramid-fd5203000d4d051b51f804af023aefe59b832029.tar.gz pyramid-fd5203000d4d051b51f804af023aefe59b832029.tar.bz2 pyramid-fd5203000d4d051b51f804af023aefe59b832029.zip | |
Merge remote branch 'cito/master'
Diffstat (limited to 'docs/tutorials/wiki/definingviews.rst')
| -rw-r--r-- | docs/tutorials/wiki/definingviews.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst index b6c083bbf..ae4fa6ffb 100644 --- a/docs/tutorials/wiki/definingviews.rst +++ b/docs/tutorials/wiki/definingviews.rst @@ -23,7 +23,7 @@ assumed to return a :term:`response` object. the request as a single argument, you can obtain it via ``request.context``. -We're going to define several :term:`view callable` functions then wire them +We're going to define several :term:`view callable` functions, then wire them into :app:`Pyramid` using some :term:`view configuration`. The source code for this tutorial stage can be browsed via @@ -202,8 +202,8 @@ the form post view callable for the form it renders. The ``context`` of the If the view execution is *not* a result of a form submission (if the expression ``'form.submitted' in request.params`` is ``False``), the view -simply renders the edit form, passing the request, the page resource, and a -save_url which will be used as the action of the generated form. +simply renders the edit form, passing the page resource, and a ``save_url`` +which will be used as the action of the generated form. If the view execution *is* a result of a form submission (if the expression ``'form.submitted' in request.params`` is ``True``), the view grabs the |
