summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-02-15 22:06:30 -0500
committerChris McDonough <chrism@plope.com>2012-02-15 22:06:30 -0500
commitb2ea4c88b8b3bc9ed657160d8a888780d6c41844 (patch)
tree39086f37dc8cf920e278830321310947e05c5b6f /docs
parent2a75f355dcf60ce1c8f537b4dfa35dbc15554661 (diff)
downloadpyramid-b2ea4c88b8b3bc9ed657160d8a888780d6c41844.tar.gz
pyramid-b2ea4c88b8b3bc9ed657160d8a888780d6c41844.tar.bz2
pyramid-b2ea4c88b8b3bc9ed657160d8a888780d6c41844.zip
Use req instead of r for #413. It's more likely that somebody is already passing something named r, and a template may depend on its existence or nonexistence to conditionalize rendering a bit of html.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/renderers.rst2
-rw-r--r--docs/whatsnew-1.3.rst7
2 files changed, 6 insertions, 3 deletions
diff --git a/docs/narr/renderers.rst b/docs/narr/renderers.rst
index 1622f1f29..1f1b1943b 100644
--- a/docs/narr/renderers.rst
+++ b/docs/narr/renderers.rst
@@ -341,7 +341,7 @@ template are ``renderer_name`` (the string used in the ``renderer`` attribute
of the directive), ``renderer_info`` (an object containing renderer-related
information), ``context`` (the context resource of the view used to render
the template), and ``request`` (the request passed to the view used to render
-the template). ``request`` is also available as ``r`` in Pyramid 1.3+.
+the template). ``request`` is also available as ``req`` in Pyramid 1.3+.
Here's an example view configuration which uses a Chameleon ZPT renderer:
diff --git a/docs/whatsnew-1.3.rst b/docs/whatsnew-1.3.rst
index c4bde2b54..a27ef6af9 100644
--- a/docs/whatsnew-1.3.rst
+++ b/docs/whatsnew-1.3.rst
@@ -284,9 +284,12 @@ 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
+- The system value ``req`` 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(...)``.
+ ``req.route_url(...)`` instead of ``request.route_url(...)``. This is
+ purely a change to reduce the amount of typing required to use request
+ methods and attributes from within templates. The value ``request`` is
+ still available too, this is just an alternative.
Backwards Incompatibilities
---------------------------