summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
============================