summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarlos de la Guardia <cguardia@yahoo.com>2010-03-20 03:40:24 +0000
committerCarlos de la Guardia <cguardia@yahoo.com>2010-03-20 03:40:24 +0000
commit31309f8372abe6f5d767d61d6139669b87de4414 (patch)
tree5716a655019d3bdbb2c28b998d79ea768957f67e /docs
parentf6b3155614c54efa733a908013c87ad8a2197d7e (diff)
downloadpyramid-31309f8372abe6f5d767d61d6139669b87de4414.tar.gz
pyramid-31309f8372abe6f5d767d61d6139669b87de4414.tar.bz2
pyramid-31309f8372abe6f5d767d61d6139669b87de4414.zip
fixes for webob chapter
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/webob.rst23
1 files changed, 12 insertions, 11 deletions
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst
index d931e41a2..7ea55add0 100644
--- a/docs/narr/webob.rst
+++ b/docs/narr/webob.rst
@@ -87,10 +87,10 @@ object:
A simple dictionary of all the cookies.
``req.headers``:
- A dictionary of all the headers. This is dictionary is case-insensitive.
+ A dictionary of all the headers. This dictionary is case-insensitive.
``req.urlvars`` and ``req.urlargs``:
- ``req.urlvars`` is the keyword parameters associated with the
+ ``req.urlvars`` are the keyword parameters associated with the
request URL. ``req.urlargs`` are the positional parameters.
These are set by products like `Routes
<http://routes.groovie.org/>`_ and `Selector
@@ -143,11 +143,11 @@ request.
See :ref:`traversal_chapter` for information about the subpath.
``req.traversed``
- The "traversal path" will be as the ``traversed`` attribute of the
+ The "traversal path" will be available as the ``traversed`` attribute of the
:term:`request` object. It will be a sequence representing the
ordered set of names that were used to traverse to the
:term:`context`, not including the view name or subpath. If there
- is a virtual root associated with request, the virtual root path is
+ is a virtual root associated with the request, the virtual root path is
included within the traversal path. See :ref:`traversal_chapter`
for more information.
@@ -289,8 +289,8 @@ Here's the highlights:
This optional attribute can point to the request object associated
with this response object.
-``response.set_cookie(key, value, max_age=None, path='/', ...)``: Set
- a cookie. The keyword arguments control the various cookie
+``response.set_cookie(key, value, max_age=None, path='/', ...)``:
+ Set a cookie. The keyword arguments control the various cookie
parameters. The ``max_age`` argument is the length for the cookie
to live in seconds (you may also use a timedelta object). The
``Expires`` key will also be set based on the value of
@@ -305,11 +305,12 @@ Here's the highlights:
or if ``seconds`` is 0 then the response is uncacheable (this also
sets the ``Expires`` header).
-``response(environ, start_response)``: The response object is a WSGI
- application. As an application, it acts according to how you
- create it. It *can* do conditional responses if you pass
- ``conditional_response=True`` when instantiating (or set that
- attribute later). It can also do HEAD and Range requests.
+``response(environ, start_response)``:
+ The response object is a WSGI application. As an application, it
+ acts according to how you create it. It *can* do conditional
+ responses if you pass ``conditional_response=True`` when
+ instantiating (or set that attribute later). It can also do HEAD
+ and Range requests.
.. index::
single: response headers