summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-24Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2013-11-20improve grammar and remove slangSteve Piercy
2013-11-20Fixed typo - removed 'hair'.Ole Morten Halvorsen
2013-11-18update whatsnew in 1.5Chris McDonough
2013-11-18remove liesChris McDonough
2013-11-18Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2013-11-17Merge pull request #1195 from ztane/masterMichael Merickel
Should return the simple_tween here, not the handler.
2013-11-17Should return the simple_tween here, not the handler.Antti Haapala
2013-11-16Merge pull request #1193 from ztane/masterSteve Piercy
Indentation fixes
2013-11-17Fixed indentation issuesAntti Haapala
2013-11-17Removed extra indentation from some examples (:linenos: should be indented ↵Antti Haapala
with the same indentation as the rest of the code block)
2013-11-16Merge branch 'ztane-master'Chris McDonough
2013-11-1680 charsChris McDonough
2013-11-16Merge branch 'master' of github.com:ztane/pyramid into ztane-masterChris McDonough
2013-11-16Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2013-11-16Added Antti Haapala to CONTRIBUTORS.txtAntti Haapala
2013-11-16Enhanced the narrative documentation for tweens.Antti Haapala
2013-11-15Added a clarifying comment on i18n _LOCALE_ valueAntti Haapala
2013-11-13Merge pull request #1187 from msabramo/patch-3Michael Merickel
.travis.yml: Add Python 3.3
2013-11-13.travis.yml: Add 3.3Marc Abramowitz
2013-11-11easiest commit everMichael Merickel
2013-11-11Merge branch 'feature.security-apis-on-request'Chris McDonough
2013-11-11Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2013-11-09undeprecate remember/forget functions and remove ↵Chris McDonough
remember_userid/forget_userid methods from request
2013-11-07document add_adapterMichael Merickel
2013-10-30indicate defaultChris McDonough
2013-10-30indicate defaultChris McDonough
2013-10-30renderingChris McDonough
2013-10-30fix failing test (unrelated to security stuff)Chris McDonough
2013-10-30new apiChris McDonough
2013-10-30convert remember/forget to request-method-basedChris McDonough
2013-10-30note deprecationChris McDonough
2013-10-30not methods, attrsChris McDonough
2013-10-30wordingChris McDonough
2013-10-30renderingChris McDonough
2013-10-30fix wiki2 tutorial wrt request-method security APIsChris McDonough
2013-10-30copy forward views.py changes to tests stepChris McDonough
2013-10-30fix zodb tutorial wrt request-based authentication and authorization apisChris McDonough
2013-10-28wording and specify return valueChris McDonough
2013-10-28add NB notes about recursive add_response_callback policies, use req instead ↵Chris McDonough
of self for normalization with exception getting
2013-10-28avoid a deprecation warning during test runsChris McDonough
2013-10-28defer looking up headers until the response callback is called (FBO things ↵Chris McDonough
like sessionauthenticationpolicy which does its own header-setting when its remember/forget methods are called)
2013-10-28add on_exception flag to remember/forget, fix a bug in _remember_userid and ↵Chris McDonough
_forget_userid (these should always return a sequence even if there is no authentication policy), defactorize tests
2013-10-28Bring change log, API docs, and deprecations in line with normal ↵Chris McDonough
policies/processes
2013-10-28Merge branch 'security-apis-on-request' of github.com:mgrbyte/pyramid into ↵Chris McDonough
mgrbyte-security-apis-on-request
2013-10-28Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2013-10-27Security APIs on pyramid.request.RequestMatt Russell
The pyramid.security Authorization API function has_permission is made available on the request. The pyramid.security Authentication API functions are now available as properties (unauthenticated_userid, authenticated_userid, effective_principals) and methods (remember_userid, forget_userid) on pyramid.request.Request. Backwards compatibility: For each of the APIs moved to request method or property, the original API in the pyramid.security module proxies to the request. Reworked tests to check module level b/c wrappers call through to mixins for each API. Tests that check no reg on request now do the right thing. Use a response callback to set the request headers for forget_userid and remember_userid. Update docs. Attempt to improve a documentation section referencing the pyramid.security.has_permission function in docs/narr/resources.rst Ensures backwards compatiblity for `pyramid.security.forget` and `pyramid.security.remember`.
2013-10-26Merge pull request #1177 from bertjwregeer/fix/signed_serialize_deserializeMichael Merickel
digestmod() has to accept a parameter in certain cases
2013-10-26Bring coverage back to 100%Bert JW Regeer
2013-10-26digestmod() has to accept a parameter in certain casesBert JW Regeer
Due to line 69 in hmac.py in the Python standard library (2.7) it expects to be able to call the digestmod function with the current key if the key passed in exceeds the block size in length. This fixes the code so that digestmod can accept string as an extra parameter, which is passed through to hashlib.new() [1]: http://hg.python.org/cpython/file/2.7/Lib/hmac.py#l69