diff options
| author | Chris McDonough <chrism@plope.com> | 2012-02-15 22:06:30 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-02-15 22:06:30 -0500 |
| commit | b2ea4c88b8b3bc9ed657160d8a888780d6c41844 (patch) | |
| tree | 39086f37dc8cf920e278830321310947e05c5b6f /docs/whatsnew-1.3.rst | |
| parent | 2a75f355dcf60ce1c8f537b4dfa35dbc15554661 (diff) | |
| download | pyramid-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/whatsnew-1.3.rst')
| -rw-r--r-- | docs/whatsnew-1.3.rst | 7 |
1 files changed, 5 insertions, 2 deletions
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 --------------------------- |
