summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.3.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-02-15 19:32:46 -0500
committerChris McDonough <chrism@plope.com>2012-02-15 19:32:46 -0500
commit4786cae2e7a053b01091b5e185102f9c26885b08 (patch)
tree1c2bc0e7733551abd3ad58d5369a2ac05e92f23a /docs/whatsnew-1.3.rst
parentf9bcf47164a151587244deb3ce5334ba447e3b99 (diff)
downloadpyramid-4786cae2e7a053b01091b5e185102f9c26885b08.tar.gz
pyramid-4786cae2e7a053b01091b5e185102f9c26885b08.tar.bz2
pyramid-4786cae2e7a053b01091b5e185102f9c26885b08.zip
- The system value ``r`` is now supplied to renderers as an alias for
``request``. This means that you can now, for example, in a template, do ``r.route_url(...)`` instead of ``request.route_url(...)``. Fixes #413.
Diffstat (limited to 'docs/whatsnew-1.3.rst')
-rw-r--r--docs/whatsnew-1.3.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index 918870018..c4bde2b54 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -54,7 +54,8 @@ to make some changes:
- We've replaced the ``paster`` command with Pyramid-specific analogues.
-- We've made the default WSGI server the ``waitress`` server.
+- We've made the default WSGI server used by Pyramid scaffolding the
+ :term:`waitress` server.
Previously (in Pyramid 1.0, 1.1 and 1.2), you created a Pyramid application
using ``paster create``, like so::
@@ -283,6 +284,10 @@ Minor Feature Additions
something like "AttributeError: 'NoneType' object has no attribute
'rfind'".
+- The system value ``r`` is now supplied to renderers as an alias for
+ ``request``. This means that you can now, for example, in a template, do
+ ``r.route_url(...)`` instead of ``request.route_url(...)``.
+
Backwards Incompatibilities
---------------------------