summaryrefslogtreecommitdiff
path: root/repoze/bfg/tests/test_template.py
AgeCommit message (Collapse)Author
2008-09-28 - A deprecation warning is now issued when old API names from theChris McDonough
``repoze.bfg.templates`` module are imported.
2008-09-26Move to Chameleon.Chris McDonough
2008-08-16Add "get_template" to template module.Chris McDonough
2008-07-19 - The concept of "view factories" was removed in favor of alwaysChris McDonough
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``.
2008-07-14Render templates explicitly in views.Chris McDonough
2008-07-14Less magical templated view model: make custom template views responsible for Chris McDonough
knowing their template's name.
2008-07-08Reuse the same PageTemplateFile for all requests to the same view.Chris McDonough
2008-07-08Call it TemplateView.Chris McDonough
2008-07-08Add a browser:page directive type and make our sample app use it.Chris McDonough