From e725cf6f3290a5fa974230d6c5c82eed3358bcf2 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 13 May 2011 03:51:49 -0400 Subject: - The ``add_route`` method of the Configurator now accepts a ``static`` argument. If this argument is ``True``, the added route will never be considered for matching when a request is handled. Instead, it will only be useful for URL generation via ``route_url`` and ``route_path``. See the section entitled "Static Routes" in the URL Dispatch narrative chapter for more information. --- CHANGES.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 0182bdce0..adf926ea2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -32,6 +32,9 @@ Documentation - Added documentation for a "multidict" (e.g. the API of ``request.POST``) as interface API documentation. +- Added a section to the "URL Dispatch" narrative chapter regarding the new + "static" route feature. + Features -------- @@ -85,6 +88,13 @@ Features section entitled "Displaying Matching Views for a Given URL" in the "View Configuration" chapter of the narrative documentation for more information. +- The ``add_route`` method of the Configurator now accepts a ``static`` + argument. If this argument is ``True``, the added route will never be + considered for matching when a request is handled. Instead, it will only + be useful for URL generation via ``route_url`` and ``route_path``. See the + section entitled "Static Routes" in the URL Dispatch narrative chapter for + more information. + Bug Fixes --------- -- cgit v1.2.3