| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-06-13 | - Remove IResponder abstraction in favor of more general IResponse | Chris McDonough | |
| abstraction. - It is now possible to return an arbitrary object from a Pyramid view callable even if a renderer is not used, as long as a suitable adapter to ``pyramid.interfaces.IResponse`` is registered for the type of the returned object. See the section in the Hooks chapter of the documentation entitled "Changing How Pyramid Treats View Responses". - The Pyramid router now, by default, expects response objects returned from view callables to implement the ``pyramid.interfaces.IResponse`` interface. Unlike the Pyramid 1.0 version of this interface, objects which implement IResponse now must define a ``__call__`` method that accepts ``environ`` and ``start_response``, and which returns an ``app_iter`` iterable, among other things. Previously, it was possible to return any object which had the three WebOb ``app_iter``, ``headerlist``, and ``status`` attributes as a response, so this is a backwards incompatibility. It is possible to get backwards compatibility back by registering an adapter to IResponse from the type of object you're now returning from view callables. See the section in the Hooks chapter of the documentation entitled "Changing How Pyramid Treats View Responses". - The ``pyramid.interfaces.IResponse`` interface is now much more extensive. Previously it defined only ``app_iter``, ``status`` and ``headerlist``; now it is basically intended to directly mirror the ``webob.Response`` API, which has many methods and attributes. - Documentation changes to support above. | |||
| 2011-04-20 | Converting docs to deprecate view parameters in config.add_route. | Michael Merickel | |
| 2011-03-24 | It was decided that pyramid would undergo a terminology change. | Joe Dallago | |
| 'Paster templates' will now be refered to as 'scaffolds,' while 'rendered templates' will remain as 'templates.' I have changed the docs to reflect this change in terminology. | |||
| 2011-01-30 | remove reference to static ZCML directive; cant refer to it from printed book | Chris McDonough | |
| 2011-01-28 | minor grammar fixes ('a' vs 'an') | Kyle Johnson | |
| 2011-01-27 | module name contractions | Chris McDonough | |
| 2011-01-19 | resource->asset | Chris McDonough | |
| 2011-01-16 | - The ``pylons_minimal``, ``pylons_basic`` and ``pylons_sqla`` paster | Chris McDonough | |
| templates were removed. Use ``pyramid_sqla`` (available from PyPI) as a generic replacement for Pylons-esque development. - All references to ``add_handler`` and the ``handler`` ZCML directive have been removed from the docs, and stubs which point to ``pylons_handlers`` package have replaced them. | |||
| 2010-12-29 | Fix quoting. | Marius Gedminas | |
| 2010-12-29 | Added missing :meth:. | Marius Gedminas | |
| 2010-12-26 | wording | Chris McDonough | |
| 2010-12-26 | wording | Chris McDonough | |
| 2010-12-26 | explain relative asset spec | Chris McDonough | |
| 2010-12-26 | wording | Chris McDonough | |
| 2010-12-26 | wording | Chris McDonough | |
| 2010-12-26 | - Merge "Static Assets" chapter into the "Assets" chapter. | Chris McDonough | |
| 2010-12-18 | model -> resource; resource -> asset | Chris McDonough | |
