summaryrefslogtreecommitdiff
path: root/docs/narr/webob.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-23 02:45:04 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-23 02:45:04 -0700
commit1cb30e690a7ba97db212e7ec9002fd83f950b0bd (patch)
tree87c6d914974b01c129bea0a1cc2900eb186eb192 /docs/narr/webob.rst
parentf5de93f1c156fd4659a191c7c78554645534968d (diff)
downloadpyramid-1cb30e690a7ba97db212e7ec9002fd83f950b0bd.tar.gz
pyramid-1cb30e690a7ba97db212e7ec9002fd83f950b0bd.tar.bz2
pyramid-1cb30e690a7ba97db212e7ec9002fd83f950b0bd.zip
Fix all the stinky linkie rot via `make linkcheck SPHINXBUILD=$VENV/bin/sphinx-build`, but don't bother with HISTORY.txt or whatsnew-xx
Diffstat (limited to 'docs/narr/webob.rst')
-rw-r--r--docs/narr/webob.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst
index cfcf532bc..ce1586834 100644
--- a/docs/narr/webob.rst
+++ b/docs/narr/webob.rst
@@ -27,8 +27,8 @@ functionality to the standard WebOb request, which is documented in the
:ref:`request_module` API documentation.
WebOb provides objects for HTTP requests and responses. Specifically it does
-this by wrapping the `WSGI <http://wsgi.org>`_ request environment and response
-status, header list, and app_iter (body) values.
+this by wrapping the `WSGI <http://wsgi.readthedocs.org/en/latest/>`_ request
+environment and response status, header list, and app_iter (body) values.
WebOb request and response objects provide many conveniences for parsing WSGI
requests and forming WSGI responses. WebOb is a nice way to represent "raw"
@@ -46,7 +46,7 @@ Request
~~~~~~~
The request object is a wrapper around the `WSGI environ dictionary
-<http://www.python.org/dev/peps/pep-0333/#environ-variables>`_. This
+<https://www.python.org/dev/peps/pep-0333/#environ-variables>`_. This
dictionary contains keys for each header, keys that describe the request
(including the path and query string), a file-like object for the request body,
and a variety of custom keys. You can always access the environ with