diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-08-19 01:58:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-19 01:58:44 -0700 |
| commit | df8598a2658632f709a64e8076cce02ca49de8e6 (patch) | |
| tree | 84a74bb86aadd6b64ee31db6e1fd850882d31d80 /docs/narr/webob.rst | |
| parent | 5488da0d165468199f0d07a2ca579b86617fad72 (diff) | |
| parent | 9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4 (diff) | |
| download | pyramid-df8598a2658632f709a64e8076cce02ca49de8e6.tar.gz pyramid-df8598a2658632f709a64e8076cce02ca49de8e6.tar.bz2 pyramid-df8598a2658632f709a64e8076cce02ca49de8e6.zip | |
Merge pull request #3331 from stevepiercy/exclude-local-linkcheck
Fix broken links from linkcheck, exclude localhost from check
Diffstat (limited to 'docs/narr/webob.rst')
| -rw-r--r-- | docs/narr/webob.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/narr/webob.rst b/docs/narr/webob.rst index 4efe783b0..ae76d3500 100644 --- a/docs/narr/webob.rst +++ b/docs/narr/webob.rst @@ -22,7 +22,7 @@ instance of the :class:`pyramid.request.Request` class, which is a subclass of WebOb is a project separate from :app:`Pyramid` with a separate set of authors and a fully separate `set of documentation -<http://docs.webob.org/en/latest/index.html>`_. :app:`Pyramid` adds some +<https://docs.pylonsproject.org/projects/webob/en/latest/index.html>`_. :app:`Pyramid` adds some functionality to the standard WebOb request, which is documented in the :ref:`request_module` API documentation. @@ -35,7 +35,7 @@ requests and forming WSGI responses. WebOb is a nice way to represent "raw" WSGI requests and responses. However, we won't cover that use case in this document, as users of :app:`Pyramid` don't typically need to use the WSGI-related features of WebOb directly. The `reference documentation -<http://docs.webob.org/en/latest/reference.html>`_ shows many examples of +<https://docs.pylonsproject.org/projects/webob/en/latest/reference.html>`_ shows many examples of creating requests and using response objects in this manner, however. .. index:: @@ -302,7 +302,7 @@ to handle this is to add an extra ``view_config`` for the same route, with ``request_method`` set to ``OPTIONS``, and set the desired response header before returning. You can find examples of response headers `Access control CORS, Preflighted requests -<https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Preflighted_requests>`_. +<https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Preflighted_requests>`_. .. index:: single: cleaning up after request @@ -357,7 +357,7 @@ More detail about the request object API is available as follows. - :class:`pyramid.request.Request` API documentation -- `WebOb documentation <http://docs.webob.org/en/latest/index.html>`_. All +- `WebOb documentation <https://docs.pylonsproject.org/projects/webob/en/latest/index.html>`_. All methods and attributes of a ``webob.Request`` documented within the WebOb documentation will work with request objects created by :app:`Pyramid`. @@ -496,4 +496,4 @@ More Details More details about the response object API are available in the :mod:`pyramid.response` documentation. More details about exception responses are in the :mod:`pyramid.httpexceptions` API documentation. The `WebOb -documentation <http://docs.webob.org/en/latest/index.html>`_ is also useful. +documentation <https://docs.pylonsproject.org/projects/webob/en/latest/index.html>`_ is also useful. |
