diff options
| author | Chris McDonough <chrism@plope.com> | 2011-08-22 03:28:53 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-08-22 03:28:53 -0400 |
| commit | 53d9d4036cee3fa3ecacc44fbd9c7b67ed9d3f13 (patch) | |
| tree | 79e7ea9dc5f21500a6c175d72af238d7d8ecbf22 /CHANGES.txt | |
| parent | bd9947340e227e3d49b96354f9aef7fd82c5062d (diff) | |
| download | pyramid-53d9d4036cee3fa3ecacc44fbd9c7b67ed9d3f13.tar.gz pyramid-53d9d4036cee3fa3ecacc44fbd9c7b67ed9d3f13.tar.bz2 pyramid-53d9d4036cee3fa3ecacc44fbd9c7b67ed9d3f13.zip | |
- Moved the ``StaticURLInfo`` class from ``pyramid.static`` to
``pyramid.config.views``.
Diffstat (limited to 'CHANGES.txt')
| -rw-r--r-- | CHANGES.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 655fb4956..0a015aa0a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -128,6 +128,9 @@ Internal - Removed the ``_set_security_policies`` method of the Configurator. +- Moved the ``StaticURLInfo`` class from ``pyramid.static`` to + ``pyramid.config.views``. + Deprecations ------------ @@ -135,8 +138,8 @@ Deprecations ``debug_notfound``) are now meant to be prefixed with the prefix ``pyramid.``. For example: ``debug_all`` -> ``pyramid.debug_all``. The old non-prefixed settings will continue to work indefinitely but supplying - them may print a deprecation warning. All scaffolds and tutorials have - been changed to use prefixed settings. + them may eventually print a deprecation warning. All scaffolds and + tutorials have been changed to use prefixed settings. - The ``settings`` dictionary now raises a deprecation warning when you attempt to access its values via ``__getattr__`` instead of @@ -153,7 +156,8 @@ Backwards Incompatibilities 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. + instead make a separate call to the method for each callable. This change + was introduced to support the ``route_prefix`` feature of include. Documentation ------------- @@ -180,6 +184,9 @@ Documentation - Added a Logging chapter to the narrative docs (based on the Pylons logging docs, thanks Phil). +- Added a Paste chapter to the narrative docs (moved content from the Project + chapter). + - Added the ``pyramid.interfaces.IDict`` interface representing the methods of a dictionary, for documentation purposes only (IMultiDict and IBeforeRender inherit from it). |
