Skip to content

Commit

Permalink
Merge pull request Pylons#961 from tshepang/refs
Browse files Browse the repository at this point in the history
fix some cross-references
  • Loading branch information
mmerickel committed Mar 31, 2013
2 parents 7bdb0c5 + 057a6c9 commit 710c04d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/whatsnew-1.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -210,13 +210,13 @@ Not Found and Forbidden View Helpers
Not Found helpers:

- New API: :meth:`pyramid.config.Configurator.add_notfound_view`. This is a
wrapper for :meth:`pyramid.Config.configurator.add_view` which provides
wrapper for :meth:`pyramid.config.Configurator.add_view` which provides
support for an "append_slash" feature as well as doing the right thing when
it comes to permissions (a Not Found View should always be public). It
should be preferred over calling ``add_view`` directly with
``context=HTTPNotFound`` as was previously recommended.

- New API: :class:`pyramid.view.notfound_view_config``. This is a decorator
- New API: :class:`pyramid.view.notfound_view_config`. This is a decorator
constructor like :class:`pyramid.view.view_config` that calls
:meth:`pyramid.config.Configurator.add_notfound_view` when scanned. It
should be preferred over using ``pyramid.view.view_config`` with
Expand All @@ -225,7 +225,7 @@ Not Found helpers:
Forbidden helpers:

- New API: :meth:`pyramid.config.Configurator.add_forbidden_view`. This is a
wrapper for :meth:`pyramid.Config.configurator.add_view` which does the
wrapper for :meth:`pyramid.config.Configurator.add_view` which does the
right thing about permissions. It should be preferred over calling
``add_view`` directly with ``context=HTTPForbidden`` as was previously
recommended.
Expand Down Expand Up @@ -267,7 +267,7 @@ Minor Feature Additions
- We allow extra keyword arguments to be passed to the
:meth:`pyramid.config.Configurator.action` method.

- Responses generated by Pyramid's :class:`pyramid.views.static_view` now use
- Responses generated by Pyramid's :class:`pyramid.static.static_view` now use
a ``wsgi.file_wrapper`` (see
http://www.python.org/dev/peps/pep-0333/#optional-platform-specific-file-handling)
when one is provided by the web server.
Expand Down Expand Up @@ -389,8 +389,8 @@ Backwards Incompatibilities
and upgrade Pyramid itself "in-place"; it may simply break instead
(particularly if you use ZCML's ``includeOverrides`` directive).

- String values passed to :meth:`Pyramid.request.Request.route_url` or
:meth:`Pyramid.request.Request.route_path` that are meant to replace
- String values passed to :meth:`pyramid.request.Request.route_url` or
:meth:`pyramid.request.Request.route_path` that are meant to replace
"remainder" matches will now be URL-quoted except for embedded slashes. For
example::

Expand Down

0 comments on commit 710c04d

Please sign in to comment.