From e880a42099f1e3df1bd628058ba9e3a38a5ef0c8 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 24 Nov 2010 03:15:22 -0500 Subject: - Add support for json on GAE by catching NotImplementedError and importing simplejson from django.utils. --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 2ea0ac448..b8c3a847f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -13,6 +13,9 @@ Features - ``pyramid.testig.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. + Bug Fixes --------- -- cgit v1.2.3 From a9f17c8b3a7fc935b70e87f2a1fb8728deb16f85 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 24 Nov 2010 18:42:35 -0500 Subject: - 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. - The Mako renderer now accepts a resource specification for ``mako.module_directory``. --- CHANGES.txt | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index b8c3a847f..547a7254a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -16,6 +16,9 @@ Features - 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``. + Bug Fixes --------- @@ -25,6 +28,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 ------------- -- cgit v1.2.3 From 0cb7acf94d429a6019871308469a98bafecac923 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 24 Nov 2010 18:50:30 -0500 Subject: typo fix --- CHANGES.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 547a7254a..3c6b8e010 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -10,8 +10,8 @@ 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. -- cgit v1.2.3 From 81e648ffded9caa9480c0053c11a0bc15afbc39a Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 24 Nov 2010 23:07:58 -0500 Subject: - New boolean Mako settings variable ``mako.strict_undefined``. See `Mako Context Variables `_ for its meaning. - Depend on Mako 0.3.6+ (we now require the ``strict_undefined`` feature). --- CHANGES.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 3c6b8e010..1675ab9fc 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -19,6 +19,16 @@ Features - The Mako renderer now accepts a resource specification for ``mako.module_directory``. +- New boolean Mako settings variable ``mako.strict_undefined``. See `Mako + Context Variables + `_ for + its meaning. + +Dependencies +------------ + +- Depend on Mako 0.3.6+ (we now require the ``strict_undefined`` feature). + Bug Fixes --------- -- cgit v1.2.3 From aa3306e314fc951b9ed9b007f2e9e9aff7ad05ea Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 27 Nov 2010 19:12:54 -0500 Subject: - Add a "Modifying Package Structure" section to the project narrative documentation chapter (explain turning a module into a package). --- CHANGES.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 1675ab9fc..6f8ec355b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -58,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) ================== -- cgit v1.2.3