From 4df5751de28947538da491dc8ebe0dfb27f742d5 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 19 Jul 2008 01:17:21 +0000 Subject: - The concept of "view factories" was removed in favor of always calling a view, which is a callable that returns a response directly (as opposed to returning a view). As a result, the ``factory`` attribute in the bfg:view ZCML statement has been renamed to ``view``. Various interface names were changed also. - ``render_template`` and ``render_transform`` no longer return a Response object. Instead, these return strings. The old behavior can be obtained by using ``render_template_to_response`` and ``render_transform_to_response``. --- repoze/bfg/push.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'repoze/bfg/push.py') diff --git a/repoze/bfg/push.py b/repoze/bfg/push.py index 49b9cda27..b48f70056 100644 --- a/repoze/bfg/push.py +++ b/repoze/bfg/push.py @@ -1,5 +1,5 @@ import os.path -from repoze.bfg.template import render_template +from repoze.bfg.template import render_template_to_response class pushpage(object): """ Decorator for functions which return ZPT template namespaces. @@ -25,7 +25,7 @@ class pushpage(object): def _curried(context, request): kw = wrapped(context, request) - return render_template(path, **kw) + return render_template_to_response(path, **kw) _curried.__name__ = wrapped.__name__ return _curried -- cgit v1.2.3