| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-10-26 | .txt -> json | Julien Cigar | |
| 2015-10-10 | minor grammar, wrap 79 cols | Steve Piercy | |
| 2013-10-19 | link to the public renderer interfaces | Michael Merickel | |
| 2013-10-07 | Docs: renders.rst: Make sentences that everybody's happy with. | Karl O. Pinc | |
| 2013-10-07 | Docs: renders.rst: Make sentences short per IRC chat with committers. | Karl O. Pinc | |
| 2013-10-07 | Docs: renders.rst: Break sentence into two to simplify. | Karl O. Pinc | |
| 2013-10-07 | Docs: renders.rst: Use punctuation to make sentence simpler. | Karl O. Pinc | |
| 2013-10-05 | Docs: Link from renderer narrative docs to example render_to_response call, ↵ | Karl O. Pinc | |
| and index the example. More fully explain the 2 examples, one with render_to_response call and one without. | |||
| 2013-10-02 | Docs: Make statements more concreate regards renderers getting data from ↵ | Karl O. Pinc | |
| dictionaries. | |||
| 2013-10-02 | Docs: renderers.rst: Explain typical renderer usage. | Karl O. Pinc | |
| 2013-09-11 | appease | Chris McDonough | |
| 2013-09-08 | fix merge conflict | Chris McDonough | |
| 2013-09-05 | move templating bindings back into the templating chapter | Michael Merickel | |
| 2013-09-05 | add index for custom template engines | Michael Merickel | |
| 2013-09-05 | remove the deprecated request.response_* attributes | Michael Merickel | |
| 2013-09-05 | add a section mentioning external template bindings | Michael Merickel | |
| 2013-09-05 | more chameleon builtin references | Michael Merickel | |
| 2013-09-04 | change focus from we to you | Michael Merickel | |
| 2013-09-04 | remove some mako/chameleon renderer docs | Michael Merickel | |
| 2013-07-18 | normalize notations used for string and json renderer return values, closes ↵ | Chris McDonough | |
| #1005 | |||
| 2013-04-22 | Merge pull request #995 from tshepang/patch-2 | Tres Seaver | |
| remove redundancy | |||
| 2013-04-22 | Merge pull request #994 from tshepang/patch-1 | Tres Seaver | |
| remove redundant text | |||
| 2013-04-22 | Merge pull request #993 from tshepang/long | Tres Seaver | |
| some doc improvements | |||
| 2013-04-22 | remove redundancy | Tshepang Lekhonkhobe | |
| 2013-04-22 | remove redundant text | Tshepang Lekhonkhobe | |
| Also, this fact has already been explained in the chapter, so mention that. | |||
| 2013-04-22 | grammar | Tshepang Lekhonkhobe | |
| 2013-04-22 | simplify explanation | Tshepang Lekhonkhobe | |
| The sentence was simply too long-winded (and not too clear). | |||
| 2013-04-22 | no need to link to a chapter that follows immediately | Tshepang Lekhonkhobe | |
| 2013-04-01 | my.package.MyJinja2Renderer is registered for .jinja2 files not .jinja | Catalin Iacob | |
| 2013-04-01 | Fix wrong reference to non existent getAjax function | Catalin Iacob | |
| 2013-02-13 | add import in code block | Michael Merickel | |
| 2013-02-09 | avoid repetition; the heading already mentions that this stuff is deprecated | Tshepang Lekhonkhobe | |
| 2013-01-23 | provide a link to the class; lineno for a 1-liner is overkill | Tshepang Lekhonkhobe | |
| 2013-01-23 | user 'deprecated' Sphinx directive | Tshepang Lekhonkhobe | |
| 2013-01-23 | use 'versionadded' Sphinx directive | Tshepang Lekhonkhobe | |
| 2013-01-23 | displaying line numbers for 1-line snippets is overkill | Tshepang Lekhonkhobe | |
| 2013-01-22 | consistency fixes | Tshepang Lekhonkhobe | |
| 2013-01-21 | fix typos | Tshepang Lekhonkhobe | |
| 2013-01-02 | eliminate other repeated words | Tshepang Lekhonkhobe | |
| 2013-01-01 | eliminate repeated "the" words | Tshepang Lekhonkhobe | |
| 2012-11-02 | typo | Carlos de la Guardia | |
| 2012-08-29 | add newness markers | Chris McDonough | |
| 2012-05-03 | allow __json__ and custom adapters to accept request arg | Chris McDonough | |
| 2012-04-18 | reverted back to using a component registry during json encoding | Michael Merickel | |
| 2012-04-17 | default_encode->_default_encode, dumps->_dumps, massage docs | Chris McDonough | |
| 2012-04-16 | docs for json defaults | Michael Merickel | |
| 2012-03-29 | - Coverage and docs updates for custom JSON class. | Chris McDonough | |
| - Fork point: master now represents a future 1.4 release. | |||
| 2012-03-28 | JSON-API rework and Object.__json__ support | Wayne Witzel III | |
| 2012-03-28 | intermediate commit | Michael Merickel | |
| 2012-02-22 | - New API: ``pyramid.config.Configurator.add_notfound_view``. This is a | Chris McDonough | |
| wrapper for ``pyramid.Config.configurator.add_view`` which provides easy append_slash support. It should be preferred over calling ``add_view`` directly with ``context=HTTPNotFound`` as was previously recommended. - New API: ``pyramid.view.notfound_view_config``. This is a decorator constructor like ``pyramid.view.view_config`` that calls ``pyramid.config.Configurator.add_notfound_view`` when scanned. It should be preferred over using ``pyramid.view.view_config`` with ``context=HTTPNotFound`` as was previously recommended. - The older deprecated ``set_notfound_view`` Configurator method is now an alias for the new ``add_notfound_view`` Configurator method. This has the following impact: the ``context`` sent to views with a ``(context, request)`` call signature registered via the deprecated ``add_notfound_view``/``set_notfound_view`` will now be the HTTPNotFound exception object instead of the actual resource context found. Use ``request.context`` to get the actual resource context. It's also recommended to disuse ``set_notfound_view`` in favor of ``add_notfound_view``, despite the aliasing. - The API documentation for ``pyramid.view.append_slash_notfound_view`` and ``pyramid.view.AppendSlashNotFoundViewFactory`` was removed. These names still exist and are still importable, but they are no longer APIs. Use ``pyramid.config.Configurator.add_notfound_view(append_slash=True)`` or ``pyramid.view.notfound_view_config(append_slash=True)`` to get the same behavior. - The ``set_forbidden_view`` method of the Configurator was removed from the documentation. It has been deprecated since Pyramid 1.1. - The AppendSlashNotFoundViewFactory used request.path to match routes. This was wrong because request.path contains the script name, and this would cause it to fail in circumstances where the script name was not empty. It should have used request.path_info, and now does. - Updated the "Registering a Not Found View" section of the "Hooks" chapter, replacing explanations of registering a view using ``add_view`` or ``view_config`` with ones using ``add_notfound_view`` or ``notfound_view_config``. - Updated the "Redirecting to Slash-Appended Routes" section of the "URL Dispatch" chapter, replacing explanations of registering a view using ``add_view`` or ``view_config`` with ones using ``add_notfound_view`` or ``notfound_view_config`` | |||
