summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-04-19 00:17:46 +0000
committerChris McDonough <chrism@agendaless.com>2010-04-19 00:17:46 +0000
commit334f4a7fff13b27d5c2be0bbe75d1507a534cbe0 (patch)
tree60b8b1cde60e28ea2d1bc6139dab47de444b0ed6
parent05d1f7d8e626d1b3d3ac5265f221e8fedf040ba5 (diff)
downloadpyramid-334f4a7fff13b27d5c2be0bbe75d1507a534cbe0.tar.gz
pyramid-334f4a7fff13b27d5c2be0bbe75d1507a534cbe0.tar.bz2
pyramid-334f4a7fff13b27d5c2be0bbe75d1507a534cbe0.zip
Clean up.
-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.