summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-10-19 05:02:17 +0000
committerChris McDonough <chrism@agendaless.com>2009-10-19 05:02:17 +0000
commitd5b2f46f323571ec32fa7e9c77ccf83f62a03fea (patch)
tree2b9c6d85c072cf8b839eb0c45b98f336fc78c19b /docs
parent3553c62d4ecf9db69f74b803c8401c53fd3451ba (diff)
downloadpyramid-d5b2f46f323571ec32fa7e9c77ccf83f62a03fea.tar.gz
pyramid-d5b2f46f323571ec32fa7e9c77ccf83f62a03fea.tar.bz2
pyramid-d5b2f46f323571ec32fa7e9c77ccf83f62a03fea.zip
Refer to webob chapter in glossary.
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst6
-rw-r--r--docs/narr/webob.rst2
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 88ef7bd97..51aba03b5 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -7,12 +7,14 @@ Glossary
.. glossary::
Request
- A ``WebOb`` request object.
+ A ``WebOb`` request object. See :ref:`webob_chapter` for
+ information about request objects.
Response
An object that has three attributes: app_iter (representing an
iterable body), headerlist (representing the http headers sent
upstream), and status (representing the http status string). This
- is the interface defined for ``WebOb`` response objects.
+ is the interface defined for ``WebOb`` response objects. See
+ :ref:`webob_chapter` for information about response objects.
Setuptools
`Setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_
builds on Python's ``distutils`` to provide easier building,
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst
index 32845ee5b..a9adf8233 100644
--- a/docs/narr/webob.rst
+++ b/docs/narr/webob.rst
@@ -1,3 +1,5 @@
+.. _webob_chapter:
+
Request and Response Objects
============================