From e8edd5ff7157c9a11b6478702c1e45bb46f11344 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 9 Dec 2010 04:04:39 -0500 Subject: - Add a ``handler`` ZCML directive. This directive does the same thing as ``pyramid.configuration.add_handler``. --- TODO.txt | 5 ----- 1 file changed, 5 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 0033eb3b3..194452f2c 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,11 +4,6 @@ Pyramid TODOs Must-Have (before 1.0) ---------------------- -- Add a ``handler`` ZCML directive. This implies some slightly dicey - refactoring of the configurator to allow it to generate ZCML - "discriminators" for views and routes, that could be implemented in terms - of "twophase configuration" in "should have" below. - - Provide a .flash API on session object. - Use ``@register_view`` instead of ``@view_config`` and change view docs to -- cgit v1.2.3 From 84c2ea40d7d1ce7fae9ebe3ea4eb36d07f45b1f4 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 9 Dec 2010 04:06:44 -0500 Subject: gardening --- TODO.txt | 4 ---- 1 file changed, 4 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 194452f2c..1addfc4ec 100644 --- a/TODO.txt +++ b/TODO.txt @@ -26,10 +26,6 @@ Should-Have - Change "Cleaning up After a Request" in the urldispatch chapter to use ``request.add_response_callback``. -- Twophase configuration (config = Configurator(autocommit=False)). Maybe - use ``zope.configuration`` ConfigurationContext as config.registry.ctx and - push execution into the configurator. - Nice-to-Have ------------ -- cgit v1.2.3 From 56b48e2c43db643ba2668d17be6cd5fd5b510089 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 9 Dec 2010 04:16:33 -0500 Subject: gardening --- TODO.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 1addfc4ec..0bf20a7e0 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,6 +4,8 @@ Pyramid TODOs Must-Have (before 1.0) ---------------------- +- Narrative docs for ``Configurator.include`` and ``Configurator.commit``. + - Provide a .flash API on session object. - Use ``@register_view`` instead of ``@view_config`` and change view docs to -- cgit v1.2.3 From 33d98b7222141a69a2a33a46e909b8a631fa609c Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 9 Dec 2010 08:48:03 -0500 Subject: gardening --- TODO.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 0bf20a7e0..e7f961621 100644 --- a/TODO.txt +++ b/TODO.txt @@ -6,6 +6,10 @@ Must-Have (before 1.0) - Narrative docs for ``Configurator.include`` and ``Configurator.commit``. +- Fix session behavior: when a Forbidden/NotFound hander is invoked, we'd + like to allow people to save the session (currently when the response has + an exception attribute, the session is tossed unconditionally). + - Provide a .flash API on session object. - Use ``@register_view`` instead of ``@view_config`` and change view docs to -- cgit v1.2.3 From c9ec44acf513611e093fcf05b4013169d04af947 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 9 Dec 2010 11:44:46 -0500 Subject: gardening --- TODO.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index e7f961621..f8fe6d07c 100644 --- a/TODO.txt +++ b/TODO.txt @@ -6,6 +6,9 @@ Must-Have (before 1.0) - Narrative docs for ``Configurator.include`` and ``Configurator.commit``. +- Fix conflict exceptions so they have the right ``info`` when one + configuration method is called from another. + - Fix session behavior: when a Forbidden/NotFound hander is invoked, we'd like to allow people to save the session (currently when the response has an exception attribute, the session is tossed unconditionally). -- cgit v1.2.3