diff options
| author | Chris McDonough <chrism@plope.com> | 2013-09-11 00:55:39 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-09-11 00:55:39 -0400 |
| commit | bb6e929288eb7e36173adbf9b28a2062caf9af71 (patch) | |
| tree | 7fe56e1dd02312de98bf60a02a8daca1ddf2a89d | |
| parent | 2204c6a7ca835dc61b35f64c4c18d7d445db0806 (diff) | |
| download | pyramid-bb6e929288eb7e36173adbf9b28a2062caf9af71.tar.gz pyramid-bb6e929288eb7e36173adbf9b28a2062caf9af71.tar.bz2 pyramid-bb6e929288eb7e36173adbf9b28a2062caf9af71.zip | |
wording
| -rw-r--r-- | CHANGES.txt | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 5976a326f..0f04587ee 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -18,11 +18,12 @@ Bug Fixes Backwards Incompatibilities --------------------------- -- Pyramid has dropped native support for the Mako and Chameleon renderers. To - re-add support for these renderers into existing projects there are 3 steps: +- Pyramid has dropped native support for the Mako and Chameleon templating + system renderers. To re-add support for these renderers into your existing + projects, there are 3 steps: - - Add `pyramid_mako` and/or `pyramid_chameleon` as dependencies by - adding them to the `install_requires` section of the package's `setup.py`:: + - Add ``pyramid_mako`` and/or ``pyramid_chameleon`` as dependencies by + adding them to the `install_requires` section of your package's `setup.py`:: setup( #... @@ -34,8 +35,8 @@ Backwards Incompatibilities ], ) - - Update instances of the ``pyramid.config.Configurator`` to include the - required addons:: + - Update instances of the ``pyramid.config.Configurator`` to ``include`` the + one or the other (or both) required addons:: config.include('pyramid_chameleon') config.include('pyramid_mako') @@ -67,10 +68,6 @@ Backwards Incompatibilities only necessary when the renderer is generating a response; it was a bug when it was done as a side effect of calling ``pyramid.renderers.render()``. -- The Mako and Chameleon renderers have been removed from Pyramid. Their - functionality has been moved to the ``pyramid_mako`` and - ``pyramid_chameleon`` distributions respectively. - - Removed the ``bfg2pyramid`` fixer script. - The ``pyramid.events.NewResponse`` event is now sent **after** response |
