summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt5
-rw-r--r--TODO.txt5
2 files changed, 7 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0b9b0a714..fdc67b191 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,7 +4,7 @@ Next release
Features
--------
-- Added "exception views". When you use an exception (anything than
+- Added "exception views". When you use an exception (anything that
inherits from the Python ``Exception`` builtin) as view context
argument, e.g.::
@@ -47,7 +47,8 @@ Features
contexts will also work.
The feature can be used with any view registration mechanism
- (``@bfg_view`` decorator, ZCML, or imperative ``add_view`` styles).
+ (``@bfg_view`` decorator, ZCML, or imperative ``config.add_view``
+ styles).
This feature was kindly contributed by Andrey Popp.
diff --git a/TODO.txt b/TODO.txt
index e8f983ac9..b16d806b2 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -7,7 +7,10 @@
- Allow a translator to be supplied for template rendering.
-- Allow a debug argument to be supplied for template rendering.
+- Allow a debug argument to be supplied for template rendering
+ (requires Chameleon capable of accepting the ``debug`` argument to a
+ template constructor; behavior currently implemented on Chameleon
+ head but not in any release).
- Figure out a way to expose some of the functionality of
``Configurator._derive_view`` as an API.