From 37f3baaa637ee6184eac5eff31ca787072f0cc2c Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 14 Feb 2012 06:59:37 -0500 Subject: garden --- TODO.txt | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 3d11470dd..f1376622d 100644 --- a/TODO.txt +++ b/TODO.txt @@ -7,8 +7,6 @@ Must-Have - Fix deployment recipes in cookbook (discourage proxying without changing server). -- Use waitress instead of wsgiref. - - pyramid.config.util.ActionInfo.__str__ potentially returns Unicode under Py2, fix. @@ -17,6 +15,8 @@ Must-Have Nice-to-Have ------------ +- Modify view mapper narrative docs to not use pyramid_handlers. + - Modify the urldispatch chapter examples to assume a scan rather than ``add_view``. @@ -38,18 +38,10 @@ Nice-to-Have - Fix deployment recipes in cookbook (discourage proxying without changing server). -Nice-to-Have ------------- - -- CherryPy server testing / exploded from CherryPy itself. - - Try "with transaction.manager" in an exception view with SQLA (preempt homina homina response about how to write "to the database" from within in an exception view). -- Add a default-view-config-params decorator that can be applied to a class - which names defaults for method-based view_config decorator options. - - Add narrative docs for wsgiapp and wsgiapp2. - Flesh out "Paste" narrative docs chapter. -- cgit v1.2.3 From b227b60f5572767aefd0165d7cfc0a58cf546dd7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 14 Feb 2012 07:02:59 -0500 Subject: garden --- TODO.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index f1376622d..1d0dbd620 100644 --- a/TODO.txt +++ b/TODO.txt @@ -15,6 +15,10 @@ Must-Have Nice-to-Have ------------ +- Put includes in development.ini on separate lines and fix project.rst to + tell people to comment out only the debugtoolbar include when they want to + disable. + - Modify view mapper narrative docs to not use pyramid_handlers. - Modify the urldispatch chapter examples to assume a scan rather than -- cgit v1.2.3 From 2d5aa5b0e1a2abea9efcb99e8305bea305723130 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Feb 2012 16:17:57 -0500 Subject: garden --- TODO.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 1d0dbd620..05022cd86 100644 --- a/TODO.txt +++ b/TODO.txt @@ -15,6 +15,9 @@ Must-Have Nice-to-Have ------------ +- Replace all mentions of zope.interface.implements with + zope.interface.implementer. + - Put includes in development.ini on separate lines and fix project.rst to tell people to comment out only the debugtoolbar include when they want to disable. -- cgit v1.2.3 From 1ca5b34f17ea889f705c1120a5b8878bff16ec63 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Feb 2012 16:23:59 -0500 Subject: - Replace all mentions of zope.interface.implements with zope.interface.implementer. --- TODO.txt | 3 --- 1 file changed, 3 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 05022cd86..1d0dbd620 100644 --- a/TODO.txt +++ b/TODO.txt @@ -15,9 +15,6 @@ Must-Have Nice-to-Have ------------ -- Replace all mentions of zope.interface.implements with - zope.interface.implementer. - - Put includes in development.ini on separate lines and fix project.rst to tell people to comment out only the debugtoolbar include when they want to disable. -- cgit v1.2.3 From 157b1e4c70d3aea96c1fdaede13a48f9235fe779 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Feb 2012 17:13:51 -0500 Subject: garden --- TODO.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 1d0dbd620..258e4912c 100644 --- a/TODO.txt +++ b/TODO.txt @@ -10,11 +10,12 @@ Must-Have - pyramid.config.util.ActionInfo.__str__ potentially returns Unicode under Py2, fix. -- Tests for view names/route patterns that contain Unicode. - Nice-to-Have ------------ +- Add set_traverser configurator method and set_resource_url_generator + method. + - Put includes in development.ini on separate lines and fix project.rst to tell people to comment out only the debugtoolbar include when they want to disable. -- cgit v1.2.3 From 11f2b29e749456b710863b989da1f1b1fa5edebb Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Feb 2012 17:18:00 -0500 Subject: garden --- TODO.txt | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 258e4912c..75dd2e0c4 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,15 +1,6 @@ Pyramid TODOs ============= -Must-Have ---------- - -- Fix deployment recipes in cookbook (discourage proxying without changing - server). - -- pyramid.config.util.ActionInfo.__str__ potentially returns Unicode under - Py2, fix. - Nice-to-Have ------------ @@ -25,7 +16,7 @@ Nice-to-Have - Modify the urldispatch chapter examples to assume a scan rather than ``add_view``. -- Decorator for append_slash_notfound_view_factory? +- Decorator for append_slash_notfound_view_factory. - Introspection: -- cgit v1.2.3 From 748aad47f90136b151be13f477ed6af1caed0493 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Feb 2012 19:09:08 -0500 Subject: - Add ``pyramid.config.Configurator.set_traverser`` API method. See the Hooks narrative documentation section entitled "Changing the Traverser" for more information. This is not a new feature, it just provides an API for adding a traverser without needing to use the ZCA API. --- TODO.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 75dd2e0c4..dfce2e2fb 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,8 +4,7 @@ Pyramid TODOs Nice-to-Have ------------ -- Add set_traverser configurator method and set_resource_url_generator - method. +- Add set_resource_url_generator method. - Put includes in development.ini on separate lines and fix project.rst to tell people to comment out only the debugtoolbar include when they want to -- cgit v1.2.3 From 4786cae2e7a053b01091b5e185102f9c26885b08 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Feb 2012 19:32:46 -0500 Subject: - The system value ``r`` is now supplied to renderers as an alias for ``request``. This means that you can now, for example, in a template, do ``r.route_url(...)`` instead of ``request.route_url(...)``. Fixes #413. --- TODO.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index dfce2e2fb..8ea5e3591 100644 --- a/TODO.txt +++ b/TODO.txt @@ -4,6 +4,9 @@ Pyramid TODOs Nice-to-Have ------------ +- Fix renderers chapter to better document system values passed to template + renderers. + - Add set_resource_url_generator method. - Put includes in development.ini on separate lines and fix project.rst to -- cgit v1.2.3 From 308ff91bd70b4dc235eaca49ea4025acefcfe0a1 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 17 Feb 2012 01:12:14 -0500 Subject: garden --- TODO.txt | 2 -- 1 file changed, 2 deletions(-) (limited to 'TODO.txt') diff --git a/TODO.txt b/TODO.txt index 8ea5e3591..ab26a87a8 100644 --- a/TODO.txt +++ b/TODO.txt @@ -7,8 +7,6 @@ Nice-to-Have - Fix renderers chapter to better document system values passed to template renderers. -- Add set_resource_url_generator method. - - Put includes in development.ini on separate lines and fix project.rst to tell people to comment out only the debugtoolbar include when they want to disable. -- cgit v1.2.3