summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-10 21:24:14 -0400
committerChris McDonough <chrism@plope.com>2011-08-10 21:24:14 -0400
commit83bf91aed8495cc42023e276a0e811445f98407d (patch)
treeb0bf8733aa9c464cbcbf762b3285cc6e620378af /CHANGES.txt
parenta0717bd001174eab13f6db4f42eadbdb971e938e (diff)
downloadpyramid-83bf91aed8495cc42023e276a0e811445f98407d.tar.gz
pyramid-83bf91aed8495cc42023e276a0e811445f98407d.tar.bz2
pyramid-83bf91aed8495cc42023e276a0e811445f98407d.zip
- Added a ``route_prefix`` argument to the
``pyramid.config.Configurator.include`` method. This argument allows you to compose URL dispatch applications together. See the section entitled "Using a Route Prefix to Compose Applications" in the "URL Dispatch" narrative documentation chapter. - Added a section entitled "Using a Route Prefix to Compose Applications" to the "URL Dispatch" narrative documentation chapter.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 208662150..c64582e02 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,6 +4,12 @@ Next release
Features
--------
+- Added a ``route_prefix`` argument to the
+ ``pyramid.config.Configurator.include`` method. This argument allows you
+ to compose URL dispatch applications together. See the section entitled
+ "Using a Route Prefix to Compose Applications" in the "URL Dispatch"
+ narrative documentation chapter.
+
- Added a ``pyramid.security.NO_PERMISSION_REQUIRED`` constant for use in
``permission=`` statements to view configuration. This constant has a
value of the string ``__no_permission_required__``. This string value was
@@ -65,9 +71,18 @@ Backwards Incompatibilities
that string is considered to be the name of a global Python logger rather
than a dotted name to an instance of a logger.
+- The ``pyramid.config.Configurator.include`` method now accepts only a
+ single ``callable`` argument (a sequence of callables used to be
+ permitted). If you are passing more than one ``callable`` to
+ ``pyramid.config.Configurator.include``, it will break. You now must now
+ instead make a separate call to the method for each callable.
+
Documentation
-------------
+- Added a section entitled "Using a Route Prefix to Compose Applications" to
+ the "URL Dispatch" narrative documentation chapter.
+
- Added a new module to the API docs: ``pyramid.tweens``.
- Added a "Registering Tweens" section to the "Hooks" narrative chapter.