summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.3.rst
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2013-03-31 11:11:34 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2013-03-31 11:11:34 +0200
commit057a6c9d452fbe04c0bc7fc80aec79cd0d2c30e4 (patch)
tree411818fd31745ab058471e18da1dd326368d087c /docs/whatsnew-1.3.rst
parent7bdb0c5eeea85a442a575f0b8b2678cccc58ea1a (diff)
downloadpyramid-057a6c9d452fbe04c0bc7fc80aec79cd0d2c30e4.tar.gz
pyramid-057a6c9d452fbe04c0bc7fc80aec79cd0d2c30e4.tar.bz2
pyramid-057a6c9d452fbe04c0bc7fc80aec79cd0d2c30e4.zip
fix some cross-references
Diffstat (limited to 'docs/whatsnew-1.3.rst')
-rw-r--r--docs/whatsnew-1.3.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index ef0256383..2606c3df3 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -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
@@ -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.
@@ -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.
@@ -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::