summaryrefslogtreecommitdiff
path: root/docs/narr/webob.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-06-27 01:17:29 -0700
committerGitHub <noreply@github.com>2017-06-27 01:17:29 -0700
commit7c5880be8dcdd22b51920d2248055db3f386565e (patch)
treefd0e41d3da66c06b440ea06e32f300479972954a /docs/narr/webob.rst
parent3fbd22d14c051d5af5001cbf954debbf7cd4b29d (diff)
parenta816a883492d530c50183e92d5a43fab07181114 (diff)
downloadpyramid-7c5880be8dcdd22b51920d2248055db3f386565e.tar.gz
pyramid-7c5880be8dcdd22b51920d2248055db3f386565e.tar.bz2
pyramid-7c5880be8dcdd22b51920d2248055db3f386565e.zip
Merge pull request #3109 from stevepiercy/master
Update all external links per `make linkcheck`
Diffstat (limited to 'docs/narr/webob.rst')
-rw-r--r--docs/narr/webob.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst
index 578fdeb51..406351562 100644
--- a/docs/narr/webob.rst
+++ b/docs/narr/webob.rst
@@ -27,7 +27,7 @@ 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.readthedocs.org/en/latest/>`_ request
+this by wrapping the `WSGI <https://wsgi.readthedocs.io/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
@@ -88,7 +88,7 @@ below.
``req.urlvars`` and ``req.urlargs``
``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.readthedocs.org/en/latest/>`_ and `Selector
+ like `Routes <https://routes.readthedocs.io/en/latest/>`_ and `Selector
<https://github.com/lukearno/selector>`_.
Also for standard HTTP request headers, there are usually attributes such as