diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-12-24 00:53:03 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-12-24 00:53:03 +0000 |
| commit | ddaac741a2cfaafb4e1aa3216c073f4ecb964091 (patch) | |
| tree | 311c235a58c55cb8634a0b45b0f7d81028765fe2 /docs/narr/webob.rst | |
| parent | 37198d25413f6ad6b9689a8b0a5fe182babd7171 (diff) | |
| download | pyramid-ddaac741a2cfaafb4e1aa3216c073f4ecb964091.tar.gz pyramid-ddaac741a2cfaafb4e1aa3216c073f4ecb964091.tar.bz2 pyramid-ddaac741a2cfaafb4e1aa3216c073f4ecb964091.zip | |
Roles.
Diffstat (limited to 'docs/narr/webob.rst')
| -rw-r--r-- | docs/narr/webob.rst | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst index 7a5e752a6..30e5ba1d6 100644 --- a/docs/narr/webob.rst +++ b/docs/narr/webob.rst @@ -6,11 +6,11 @@ Request and Response Objects :mod:`repoze.bfg` uses the :term:`WebOb` package to supply :term:`request` and :term:`response` object implementations. The :term:`request` object that is passed to a :mod:`repoze.bfg` -:term:`view` is an instance of the :mod:`webob.Request` class. The -:term:`response` returned from a :mod:`repoze.bfg` :term:`view` -:term:`renderer` is an instance of the :mod:`webob.Response` class. -Users can also return an instance of :mod:`webob.Response` directly -from a view as necessary. +:term:`view` is an instance of the :class:`repoze.bfg.Request` class, +which is a subclass of :class:`webob.Request`. The :term:`response` +returned from a :mod:`repoze.bfg` :term:`view` :term:`renderer` is an +instance of the :mod:`webob.Response` class. Users can also return an +instance of :mod:`webob.Response` directly from a view as necessary. WebOb is a project separate from :mod:`repoze.bfg` with a separate set of authors and a fully separate `set of documentation @@ -20,7 +20,9 @@ of authors and a fully separate `set of documentation request and response objects provided by :term:`WebOb`. See the `reference documentation <http://pythonpaste.org/webob/reference.html>`_ for more detailed - API reference information. + API reference information. All methods in the :term:`WebOb` + documentation work against :mod:`repoze.bfg` requests and + responses. WebOb provides objects for HTTP requests and responses. Specifically it does this by wrapping the `WSGI <http://wsgi.org>`_ request |
