summaryrefslogtreecommitdiff
path: root/repoze/bfg/push.py
AgeCommit message (Collapse)Author
2009-06-19Move pushpage support out into separate distribution.Tres Seaver
2009-06-01Bugs found by redir.Chris McDonough
2009-05-21Remove cacheability voodoo.Chris McDonough
2009-05-14Docs rendering tweaks.Chris McDonough
2009-04-29Suppress coverage report for BBB import.Tres Seaver
2009-01-16FeaturesChris McDonough
-------- - The functionality of ``repoze.bfg.convention`` has been merged into the core. Applications which make use of ``repoze.bfg.convention`` will continue to work indefinitely, but it is recommended that apps stop depending upon it. To do so, substitute imports of ``repoze.bfg.convention.bfg_view`` with imports of ``repoze.bfg.view.bfg_view``, and change the stanza in ZCML from ``<convention package=".">`` to ``<grok package=".">``. As a result of the merge, bfg has grown a new dependency: ``martian``. - View functions which use the pushpage decorator are now pickleable (meaning their use won't prevent a ``configure.zcml.cache`` file from being written to disk). Implementation Changes ---------------------- - The ``wsgiapp`` decorator now uses ``webob.Request.get_response`` to do its work rather than relying on howgrown WSGI code.
2008-11-16Add r.bfg.convention support to pushpage decorator.Chris McDonough
2008-09-26Move to Chameleon.Chris McDonough
2008-07-24Docs wrong.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-16Doc tweaks.Chris McDonough
2008-07-16Added 'repoze.bfg.push:pushpage' decoratorTres Seaver
o Creates BFG views from callables which take (context, request) and return a mapping of top-level names.