| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-05-16 | - Added API docs for ``pyramid.httpexceptions.abort`` and | Chris McDonough | |
| ``pyramid.httpexceptions.redirect``. - Added "HTTP Exceptions" section to Views narrative chapter including a description of ``pyramid.httpexceptions.abort``; adjusted redirect section to note ``pyramid.httpexceptions.redirect``. - A default exception view for the context ``webob.exc.HTTPException`` (aka ``pyramid.httpexceptions.HTTPException``) is now registered by default. This means that an instance of any exception class imported from ``pyramid.httpexceptions`` (such as ``HTTPFound``) can now be raised from within view code; when raised, this exception view will render the exception to a response. - New functions named ``pyramid.httpexceptions.abort`` and ``pyramid.httpexceptions.redirect`` perform the equivalent of their Pylons brethren when an HTTP exception handler is registered. These functions take advantage of the newly registered exception view for ``webob.exc.HTTPException``. - The Configurator now accepts an additional keyword argument named ``httpexception_view``. By default, this argument is populated with a default exception view function that will be used when an HTTP exception is raised. When ``None`` is passed for this value, an exception view for HTTP exceptions will not be registered. Passing ``None`` returns the behavior of raising an HTTP exception to that of Pyramid 1.0 (the exception will propagate to middleware and to the WSGI server). | |||
| 2011-05-15 | garden | Chris McDonough | |
| 2011-05-14 | garden | Chris McDonough | |
| 2011-05-13 | good enough | Chris McDonough | |
| 2011-05-13 | - The ``add_route`` method of the Configurator now accepts a ``static`` | Chris McDonough | |
| argument. If this argument is ``True``, the added route will never be considered for matching when a request is handled. Instead, it will only be useful for URL generation via ``route_url`` and ``route_path``. See the section entitled "Static Routes" in the URL Dispatch narrative chapter for more information. | |||
| 2011-05-13 | - Added documentation for a "multidict" (e.g. the API of ``request.POST``) as | Chris McDonough | |
| interface API documentation. | |||
| 2011-05-12 | zcml not part of pyramid itself anymore | Chris McDonough | |
| 2011-05-12 | garden | Chris McDonough | |
| 2011-04-22 | garden | Chris McDonough | |
| 2011-04-19 | garden | Chris McDonough | |
| 2011-04-19 | garden | Chris McDonough | |
| 2011-04-18 | garden | Chris McDonough | |
| 2011-04-18 | garden | Chris McDonough | |
| 2011-04-13 | put note in about reviewing alex marandon's writeup | Chris McDonough | |
| 2011-04-12 | request.response | Chris McDonough | |
| 2011-04-10 | gardening | Chris McDonough | |
| 2011-04-10 | - It is now possible to get information about why Pyramid raised a Forbidden | Chris McDonough | |
| exception from within an exception view. The ``ACLDenied`` object returned by the ``permits`` method of each stock authorization policy (``pyramid.interfaces.IAuthorizationPolicy.permits``) is now attached to the Forbidden exception as its ``result`` attribute. Therefore, if you've created a Forbidden exception view, you can see the ACE, ACL, permission, and principals involved in the request as eg. ``context.result.permission``, ``context.result.acl``, etc within the logic of the Forbidden exception view. | |||
| 2011-04-10 | garden | Chris McDonough | |
| 2011-04-10 | gardening | Chris McDonough | |
| 2011-04-10 | rocky added i18n to jinja2 | Chris McDonough | |
| 2011-04-10 | - An exception raised by a NewRequest event subscriber can now be caught by | Chris McDonough | |
| an exception view. | |||
| 2011-03-25 | note requirement for multidict docs | Chris McDonough | |
| 2011-03-21 | note promise | Chris McDonough | |
| 2011-02-01 | garden | Chris McDonough | |
| 2011-01-30 | defer | Chris McDonough | |
| 2011-01-29 | - Changed "Cleaning up After a Request" section in the URL Dispatch chapter | Chris McDonough | |
| to use ``request.add_finished_callback`` instead of jamming an object with a ``__del__`` into the WSGI environment. | |||
| 2011-01-29 | - Added ``egg:repoze.retry#retry`` middleware to the WSGI pipeline in ZODB | Chris McDonough | |
| templates (retry ZODB conflict errors which occur in normal operations). | |||
| 2011-01-29 | garden | Chris McDonough | |
| 2011-01-28 | garden | Chris McDonough | |
| 2011-01-25 | - Use © instead of copyright symbol in paster templates / tutorial | Chris McDonough | |
| templates for the benefit of folks who cutnpaste and save to a non-UTF8 format. | |||
| 2011-01-25 | gardening | Chris McDonough | |
| 2011-01-24 | Add todo item for BeforeRender docs. | Ben Bangert | |
| 2011-01-21 | - Minimally explain usage of custom regular expressions in URL dispatch | Chris McDonough | |
| replacement markers within URL Dispatch chapter. | |||
| 2011-01-21 | - Add a ``MANIFEST.in`` file to each paster template. See | Chris McDonough | |
| https://github.com/Pylons/pyramid/issues#issue/95 Closes issue #95. | |||
| 2011-01-21 | garden | Chris McDonough | |
| 2011-01-21 | wording | Chris McDonough | |
| 2011-01-21 | - Move content of "Forms" chapter back to "Views" chapter; I can't think of a | Chris McDonough | |
| better place to put it. | |||
| 2011-01-21 | Incorporate suggestions from https://github.com/Pylons/pyramid/issues/#issue/57 | Chris McDonough | |
| 2011-01-21 | - Added "What's New in Pyramid 1.0" chapter to HTML rendering of | Chris McDonough | |
| documentation. | |||
| 2011-01-21 | - Add (minimal) documentation about using I18N within Mako templates to | Chris McDonough | |
| "Internationalization and Localization" narrative chapter. | |||
| 2011-01-21 | garden | Chris McDonough | |
| 2011-01-21 | garden: | Chris McDonough | |
| 2011-01-21 | - Add docs for ``add_finished_callback``, ``add_response_callback``, | Chris McDonough | |
| ``route_path``, ``route_url``, and ``static_url`` methods to ``pyramid.request.Request`` API docs. | |||
| 2011-01-21 | garden | Chris McDonough | |
| 2011-01-20 | add first cut of whatsnew document | Chris McDonough | |
| 2011-01-20 | garden | Chris McDonough | |
| 2011-01-20 | garden | Chris McDonough | |
| 2011-01-20 | garden | Chris McDonough | |
| 2011-01-19 | Gardening | Blaise Laflamme | |
| 2011-01-19 | - Added "Adding Methods to the Configurator via ``add_directive``" section to | Chris McDonough | |
| Advanced Configuration narrative chapter. | |||
