summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-09-26 06:42:53 +0000
committerChris McDonough <chrism@agendaless.com>2008-09-26 06:42:53 +0000
commit01a6e567a20096f6033cc603667f4e900d2a44c3 (patch)
treea87431383a63dbafbb5cccdfa7679b9187bdfc29 /CHANGES.txt
parent26216e5526ca56d886d2348f9e1f09b86622aa72 (diff)
downloadpyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.tar.gz
pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.tar.bz2
pyramid-01a6e567a20096f6033cc603667f4e900d2a44c3.zip
Move to Chameleon.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4378fba85..2a0160998 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -13,6 +13,35 @@ Next release
- Add ``principals_allowed_by_permission`` API to security module.
+ - Replace ``z3c.pt`` support with support for ``chameleon.zpt``.
+ Chameleon is the new name for the package that used to be named
+ ``z3c.pt``. NOTE: If you update a ``repoze.bfg`` SVN checkout
+ that you're using for development, you will need to run "setup.py
+ install" or "setup.py develop" again in order to obtain the
+ proper Chameleon packages. ``z3c.pt`` is no longer supported by
+ ``repoze.bfg``. All API functions that used to render ``z3c.pt``
+ templates will work fine with the new packages, and your
+ templates should render almost identically.
+
+ - Add a ``repoze.bfg.chameleon_zpt`` module. This module provides
+ Chameleon ZPT support.
+
+ - Add a ``repoze.bfg.xslt`` module. This module provides XSLT
+ support.
+
+ - Add a ``repoze.bfg.chameleon_genshi`` module. This provides
+ direct Genshi support, which did not exist previously.
+
+ Deprecations
+
+ - Importing API functions directly from ``repoze.bfg.template`` is
+ now deprecated. The ``get_template``, ``render_template``,
+ ``render_template_to_response`` functions should now be imported
+ from ``repoze.chameleon_zpt``. The ``render_transform``, and
+ ``render_transform_to_response`` functions should now be imported
+ from ``repoze.bfg.xslt``. The ``repoze.bfg.template`` module
+ will remain around "forever" to support backwards compatibility.
+
0.3.7 (09/09/2008)
Features