summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-08-29 15:33:42 -0400
committerChris McDonough <chrism@plope.com>2013-08-29 15:33:42 -0400
commitc0d5a5caf165d2dc3dcae08b687a8b4a7a93201c (patch)
tree42b8647b1ea631cd53e75d157a6f1af13bcf9276 /CHANGES.txt
parent230157fcc3a3d3bd4658189aa5588da41b2da840 (diff)
parent330164c3190d92a3e1df89baafba12570d03bd32 (diff)
downloadpyramid-c0d5a5caf165d2dc3dcae08b687a8b4a7a93201c.tar.gz
pyramid-c0d5a5caf165d2dc3dcae08b687a8b4a7a93201c.tar.bz2
pyramid-c0d5a5caf165d2dc3dcae08b687a8b4a7a93201c.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt19
1 files changed, 17 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 41ecbde0f..93349abe6 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -9,8 +9,10 @@ Features
represent a "bare" ``{{a}}``. See
https://github.com/Pylons/pyramid/pull/862
-- Add ``localizer`` property (reified) to the request.
- See https://github.com/Pylons/pyramid/issues/508.
+- Add ``localizer`` and ``locale_name`` properties (reified) to the request.
+ See https://github.com/Pylons/pyramid/issues/508. Note that the
+ ``pyramid.i18n.get_localizer`` and ``pyramid.i18n.get_locale_name`` functions
+ now simply look up these properties on the request.
- Add ``pdistreport`` script, which prints the Python version in use, the
Pyramid version in use, and the version number and location of all Python
@@ -154,6 +156,13 @@ Features
Bug Fixes
---------
+- When the ``pyramid.reload_templates`` setting was true, and a Chameleon
+ template was reloaded, and the renderer specification named a macro
+ (e.g. ``foo#macroname.pt``), renderings of the template after the template
+ was reloaded due to a file change would produce the entire template body
+ instead of just a rendering of the macro. See
+ https://github.com/Pylons/pyramid/issues/1013.
+
- Fix an obscure problem when combining a virtual root with a route with a
``*traverse`` in its pattern. Now the traversal path generated in
such a configuration will be correct, instead of an element missing
@@ -217,6 +226,12 @@ Backwards Incompatibilities
as WSGI servers always unquote the slash anyway, and Pyramid never sees the
quoted value.
+- It is no longer possible to set a ``locale_name`` attribute of the request,
+ nor is it possible to set a ``localizer`` attribute of the request. These
+ are now "reified" properties that look up a locale name and localizer
+ respectively using the machinery described in the "Internationalization"
+ chapter of the documentation.
+
1.4 (2012-12-18)
================