| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-11-14 | remove duplicate whatsnew entry (forward port from 1.3 branch | Chris McDonough | |
| 2012-11-14 | ref #725; indicate how to join the result of render_view_to_iterable | Chris McDonough | |
| 2012-11-14 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-13 | indicate render_view returns a bytestring (see #725) | Michael Merickel | |
| 2012-11-13 | updated changelog | Michael Merickel | |
| 2012-11-13 | Merge branch 'pull.725' which closes #721 | Michael Merickel | |
| 2012-11-13 | simplfied change as response.app_iter must contain bytes per pep 3333 | Michael Merickel | |
| 2012-11-13 | Merge branch 'master' of avolkov/pyramid into pull.725 | Michael Merickel | |
| 2012-11-13 | My fix for Issue #721. Made view.py - render_view to convert iterable input | Alex Volkov | |
| into bytestring and joing it with bytestring. | |||
| 2012-11-13 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-13 | forward port from 1.3 branch | Chris McDonough | |
| 2012-11-13 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-12 | removed doc-update from changelog | Michael Merickel | |
| 2012-11-12 | Merge branch 'fix.516' of rob0t7/pyramid into pull.720 | Michael Merickel | |
| 2012-11-12 | Added changes to the CHANGES log. | Robert Jackiewicz | |
| 2012-11-12 | Modified the hooks documentation to currently describe how to access the ↵ | Robert Jackiewicz | |
| context in a forbidden view. | |||
| 2012-11-12 | Move pyramid.config.views.viewdefaults -> pyramid.util.viewdefaults | Chris McDonough | |
| Move pyramid.config.util.ActionInfo -> pyramid.util.ActionInfo Move pyramid.config.util.action_method -> pyramid.util.action_method This is in support of not requiring substance d and other like systems to import from within pyramid.config (even though these functions and classes are still not officially documented APIs). Backwards compatibility imports have been left in place. | |||
| 2012-11-11 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-11 | - Be more tolerant of potential error conditions in ``match_param`` and | Chris McDonough | |
| ``physical_path`` predicate implementations; instead of raising an exception, return False. | |||
| 2012-11-05 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-04 | visually aid the decorator= example | Philip Jenvey | |
| 2012-11-04 | update changelog, close #627 | Michael Merickel | |
| 2012-11-04 | Merge branch 'pull.627' | Michael Merickel | |
| 2012-11-04 | reversed the ordering of decorator arg to add_view | Michael Merickel | |
| 2012-11-04 | Merge branch 'tupleofdecorators' of xrotwang/pyramid into pull.627 | Michael Merickel | |
| 2012-11-04 | Added explanations to docstring. | rforkel | |
| 2012-11-04 | Added support for passing multiple decorators to add_view. | rforkel | |
| 2012-11-04 | garden | Chris McDonough | |
| 2012-11-04 | - Allow a ``_depth`` argument to ``pyramid.view.view_config``, which will | Chris McDonough | |
| permit limited compisition reuse of the decorator by other software that wants to provide custom decorators that are much like view_config. Closes #637. | |||
| 2012-11-04 | Merge branch 'fix.695' | Chris McDonough | |
| 2012-11-04 | reword docs | Chris McDonough | |
| 2012-11-04 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-04 | fix tests to use sha512 to avoid emitting warnings | Michael Merickel | |
| 2012-11-04 | emit a warning if a user is using the default hashalg to AuthTkt | Michael Merickel | |
| 2012-11-04 | Merge branch 'master' into fix.695 | Michael Merickel | |
| 2012-11-04 | garden | Michael Merickel | |
| 2012-11-04 | merged SHA512AuthTktAuthenticationPolicy into AuthTktAuthenticationPolicy | Michael Merickel | |
| AuthTktAuthenticationPolicy now accepts a hashalg parameter and is no longer deprecated. Docs recommend overriding hashalg and using 'sha512'. | |||
| 2012-11-04 | Merge branch 'iElectric-feature.sha512_auth' | Chris McDonough | |
| 2012-11-04 | fix docs, upgrade tutorials, add change note, deprecate using ↵ | Chris McDonough | |
| zope.deprecation instead of a warning, make hashalg arg a kwarg in certain cases in case someone (maybe me) is using nonapi function imports from authentication | |||
| 2012-11-04 | Merge branch 'feature.sha512_auth' of git://github.com/iElectric/pyramid ↵ | Chris McDonough | |
| into iElectric-feature.sha512_auth | |||
| 2012-11-04 | - In uncommon cases, the ``pyramid_excview_tween_factory`` might have | Chris McDonough | |
| inadvertently raised a ``KeyError`` looking for ``request_iface`` as an attribute of the request. It no longer fails in this case. See https://github.com/Pylons/pyramid/issues/700 Fixes #700 | |||
| 2012-11-03 | - Move ``TopologicalSorter`` from ``pyramid.config.util`` to ``pyramid.util``, | Chris McDonough | |
| move ``CyclicDependencyError`` from ``pyramid.config.util`` to ``pyramid.exceptions``, rename ``Singleton`` to ``Sentinel`` and move from ``pyramid.config.util`` to ``pyramid.config.util``; this is in an effort to move that stuff that may be an API one day out of ``pyramid.config.util, because that package should never be imported from non-Pyramid code. TopologicalSorter is still not an API, but may become one. | |||
| 2012-11-03 | why is this file here | Chris McDonough | |
| 2012-11-02 | garden; fixes #702 | Chris McDonough | |
| 2012-11-02 | Merge branch 'wylee-master' | Chris McDonough | |
| 2012-11-02 | dont use a separate request factory; instead just assign ResponseClass attr ↵ | Chris McDonough | |
| of the Request class to pyramid.response.Response | |||
| 2012-11-02 | Merge branch 'master' of git://github.com/wylee/pyramid into wylee-master | Chris McDonough | |
| 2012-11-02 | garden | Chris McDonough | |
| 2012-11-02 | - In the past if a renderer returned ``None``, the body of the resulting | Chris McDonough | |
| response would be set explicitly to the empty string. Instead, now, the body is left unchanged, which allows the renderer to set a body itself by using e.g. ``request.response.body = b'foo'``. The body set by the renderer will be unmolested on the way out. See https://github.com/Pylons/pyramid/issues/709 Closes #709 | |||
| 2012-11-02 | Merge branch '1.4-branch' | Chris McDonough | |
