diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-07-08 01:10:59 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-07-08 01:10:59 +0000 |
| commit | 4c4a6185930ce4fc11a6f9464c86e02c5e306ca2 (patch) | |
| tree | ea4bdfafbcc9d77aa235c483844e8db5b95c7442 /docs | |
| parent | f57eebfbbf51d569d4350d9dbbfdb21b683f381a (diff) | |
| download | pyramid-4c4a6185930ce4fc11a6f9464c86e02c5e306ca2.tar.gz pyramid-4c4a6185930ce4fc11a6f9464c86e02c5e306ca2.tar.bz2 pyramid-4c4a6185930ce4fc11a6f9464c86e02c5e306ca2.zip | |
Rendering.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/project.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 700afe3a1..e2fc69435 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -575,7 +575,7 @@ registry`. It looks like so: Much of the heavy lifting in a :mod:`repoze.bfg` application comes in the form of *views*. A :term:`view` is the bridge between the content -in the model, and the HTML given back to the browser. +in the model, and the response given back to a browser. .. literalinclude:: MyProject/myproject/views.py :linenos: @@ -593,7 +593,7 @@ in the model, and the HTML given back to the browser. of the class ``MyModel`` should run this ``my_view`` function. The function is handed two pieces of information: the - :term:`context` and the term:`request`. The *context* is the term + :term:`context` and the :term:`request`. The *context* is the term :term:`model` found via :term:`traversal` (or via :term:`URL dispatch`). The *request* is an instance of the :term:`WebOb` ``Request`` class representing the browser's request to our server. |
