| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2012-11-02 | resolve merge conflict | Chris McDonough | |
| 2012-11-02 | garden | Chris McDonough | |
| 2012-11-02 | garden | Chris McDonough | |
| 2012-11-02 | - Do not allow the userid returned from the ``authenticated_userid`` or the | Chris McDonough | |
| userid that is one of the list of principals returned by ``effective_principals`` to be either of the strings ``system.Everyone`` or ``system.Authenticated`` when any of the built-in authorization policies that live in ``pyramid.authentication`` are in use. These two strings are reserved for internal usage by Pyramid and they will not be accepted as valid userids. | |||
| 2012-11-02 | explain csrf token stealing potentiality | Chris McDonough | |
| 2012-11-02 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-11-02 | typo | Carlos de la Guardia | |
| 2012-10-30 | Merge branch '1.4-branch' | Chris McDonough | |
| 2012-10-30 | Merge pull request #711 from Pylons/fix.auth-policy-notice | Chris McDonough | |
| updated authentication policy api documentation | |||
| 2012-10-30 | updated authentication policy api documentation | Michael Merickel | |
| 2012-10-30 | updated docs | Michael Merickel | |
| 2012-10-30 | updated changes | Michael Merickel | |
| 2012-10-30 | raise exc if view_execution_permitted invoked on non-existant view | Michael Merickel | |
| fix #299 | |||
| 2012-10-29 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-29 | Merge branch 'master' into 1.4-branch | Chris McDonough | |
| 2012-10-28 | - Added an ``effective_principals`` route and view predicate. | Chris McDonough | |
| 2012-10-27 | Merge branch 'master' into 1.4-branch | Chris McDonough | |
| 2012-10-26 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-26 | prep for 1.4a3 | Chris McDonough | |
| 2012-10-26 | - New ``physical_path`` view predicate. If specified, this value should be a | Chris McDonough | |
| string or a tuple representing the physical traversal path of the context found via traversal for this predicate to match as true. For example: ``physical_path='/'`` or ``physical_path='/a/b/c'`` or ``physical_path=('', 'a', 'b', 'c')``. This is not a path prefix match or a regex, it's a whole-path match. It's useful when you want to always potentially show a view when some object is traversed to, but you can't be sure about what kind of object it will be, so you can't use the ``context`` predicate. The individual path elements inbetween slash characters or in tuple elements should be the Unicode representation of the name of the resource and should not be encoded in any way. | |||
| 2012-10-18 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-10-14 | pypi support for python 3.3 | Michael Merickel | |
| 2012-10-14 | pypi support for python 3.3 | Michael Merickel | |
| 2012-10-14 | Merge branch 'feature-basic-auth' | Chris McDonough | |
| 2012-10-14 | point at policy | Chris McDonough | |
| 2012-10-14 | Fixes for Python 3. | Chris Rossi | |
| 2012-10-14 | Update change log. | Chris Rossi | |
| 2012-10-14 | Merge branch 'master' into feature-basic-auth | Chris Rossi | |
| 2012-10-14 | Include recipe for issuing challenge. | Chris Rossi | |
