diff options
| author | Casey Duncan <casey.duncan@gmail.com> | 2010-11-27 22:04:31 -0700 |
|---|---|---|
| committer | Casey Duncan <casey.duncan@gmail.com> | 2010-11-27 22:04:31 -0700 |
| commit | cc0f6a2cf76e5cee3678446b0e226367dc96d158 (patch) | |
| tree | 2e9ce26cd0ab997d5ed18a0976dd2cda30057d57 /CHANGES.txt | |
| parent | ef921f9724c9810f0147a10a5d5b9112bc2e9ce1 (diff) | |
| parent | b5f8a5ee066c39fb6be2f677551fd4211670b2de (diff) | |
| download | pyramid-cc0f6a2cf76e5cee3678446b0e226367dc96d158.tar.gz pyramid-cc0f6a2cf76e5cee3678446b0e226367dc96d158.tar.bz2 pyramid-cc0f6a2cf76e5cee3678446b0e226367dc96d158.zip | |
Merge https://github.com/Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 2ea0ac448..6f8ec355b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -10,8 +10,24 @@ Features templates now use idiomatic SQLAlchemy configuration in their respective ``.ini`` files and Python code. -- ``pyramid.testig.DummyRequest`` now has a class variable, ``query_string``, - which defaults to the empty string. +- ``pyramid.testing.DummyRequest`` now has a class variable, + ``query_string``, which defaults to the empty string. + +- Add support for json on GAE by catching NotImplementedError and importing + simplejson from django.utils. + +- The Mako renderer now accepts a resource specification for + ``mako.module_directory``. + +- New boolean Mako settings variable ``mako.strict_undefined``. See `Mako + Context Variables + <http://www.makotemplates.org/docs/runtime.html#context-variables>`_ for + its meaning. + +Dependencies +------------ + +- Depend on Mako 0.3.6+ (we now require the ``strict_undefined`` feature). Bug Fixes --------- @@ -22,6 +38,12 @@ Bug Fixes - Make default renderer work (renderer factory registered with no name, which is active for every view unless the view names a specific renderer). +- The Mako renderer did not properly turn the ``mako.imports``, + ``mako.default_filters``, and ``mako.imports`` settings into lists. + +- The Mako renderer did not properly convert the ``mako.error_handler`` + setting from a dotted name to a callable. + Documentation ------------- @@ -36,6 +58,8 @@ Documentation chapter (has ``implementation()`` method, required to be used when getting at Chameleon macros). +- Add a "Modifying Package Structure" section to the project narrative + documentation chapter (explain turning a module into a package). 1.0a4 (2010-11-21) ================== |
