summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-06Added first level sections, fixed route in the summaryPatricio Paez
2012-04-06Improve Authorization in the SQL tutorialPatricio Paez
- Made the section headers more explicit and rearranged them in a group for access control and another for login/logout - Split the summary in the two groups - Added missing section Add routes for /login and /logout - Clarify some sections
2012-04-05noteChris McDonough
2012-04-04Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-04-04Merge pull request #523 from oddshocks/masterChris McDonough
Addressed #327
2012-04-02removed strange text that showed upDavid Gay
2012-04-02Merge branch 'master' of github.com:oddshocks/pyramidDavid Gay
Conflicts: docs/narr/views.rst
2012-04-02addressed #327David Gay
2012-04-02addressed #327David Gay
2012-04-01Merge pull request #521 from ppaez/sql-wiki-authorizationCarlos de la Guardia
Improvements to the SQL wiki authorization chapter
2012-04-01Improve Authorization on SQL tutorialPatricio Paez
- Simplified the authentication policy callback section - Use full path for files in Seeing Our Changes - Fixed a typo
2012-04-01More simplification to the Authorization chapterPatricio Paez
- Clarify the Adding A Root Factory section, include a related modification to __init__.py - Added Add routes for /login and /logout section - Added yellow higlighting in various listings - Consolidate all the Seeing our changes at the end - Use a 'do, then explain' pattern
2012-04-01Improved Adding Authorization in SQL wiki tutorialPatricio Paez
- Removed unneeded logged_in assignment - Moved up text to the corresponding section - Normalize references to view callables - Simplify text in Add permission declarations
2012-03-31Merge pull request #513 from ppaez/issue-510Carlos de la Guardia
Mark line with yellow in SQL wiki - issue #510
2012-03-30Use predicate.__text__ in predicate mismatch exceptions. See Issue #502Arndt Droullier
2012-03-30- As of this release, the ``request_method`` predicate, when used, will alsoChris McDonough
imply that ``HEAD`` is implied when you use ``GET``. For example, using ``@view_config(request_method='GET')`` is equivalent to using ``@view_config(request_method='HEAD')``. Using ``@view_config(request_method=('GET', 'POST')`` is equivalent to using ``@view_config(request_method=('GET', 'HEAD', 'POST')``. This is because HEAD is a variant of GET that omits the body, and WebOb has special support to return an empty body when a HEAD is used.
2012-03-30note that this is a forward portChris McDonough
2012-03-30forward-port security fix from 1.3 branchChris McDonough
2012-03-30- When no authentication policy was configured, a call toChris McDonough
``pyramid.security.effective_principals`` would unconditionally return the empty list. This was incorrect, it should have unconditionally returned ``[Everyone]``, and now does.
2012-03-29bad ideaChris McDonough
2012-03-29Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-03-29move changes to history on master (master is now 1.4dev)Chris McDonough
2012-03-29Merge pull request #518 from wwitzel3/ww/contribChris McDonough
signed contributors agreement
2012-03-29update version markersChris McDonough
2012-03-29Merge branch 'wwitzel3-json-api'Chris McDonough
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-28signed contributors agreementWayne Witzel III
2012-03-28JSON-API rework and Object.__json__ supportWayne Witzel III
2012-03-28intermediate commitMichael Merickel
2012-03-28Merge pull request #515 from stevepiercy/contributorsChris McDonough
signed contributors agreement
2012-03-27signed contributors agreementSteve Piercy
2012-03-27Merge branch 'fix.512'Chris McDonough
2012-03-27add change noteChris McDonough
2012-03-26use a dollar sign instead of an underChris McDonough
2012-03-26add a test for an asset spec with a module dirChris McDonough
2012-03-26Mark line with yellow in SQL wiki - issue #510Patricio Paez
2012-03-26speculative fix for issue #512Chris McDonough
2012-03-25fix tests under py33Chris McDonough
2012-03-22Merge branch '1.3-branch'Chris McDonough
2012-03-22- Add ``REMOTE_ADDR`` to the ``prequest`` WSGI environ dict for benefit ofChris McDonough
the debug toolbar, which effectively requires it to be present to work properly.
2012-03-21Merge branch '1.3-branch'Chris McDonough
2012-03-21flesh out system valuesChris McDonough
2012-03-21Merge branch 'master' of github.com:muellert/pyramidToni Mueller
2012-03-21generate more common filenames for sqlite and patch the wiki2Toni Mueller
tutorial, too
2012-03-21prep for 1.3Chris McDonough
2012-03-20updateChris McDonough
2012-03-20generate more common filenames for sqliteToni Mueller
2012-03-20Merge branch '1.3-branch'Chris McDonough
2012-03-20- The fix for issue https://github.com/Pylons/pyramid/issues/461 (which madeChris McDonough
it possible for instance methods to be used as view callables) introduced a backwards incompatibility when methods that declared only a request argument were used. See https://github.com/Pylons/pyramid/issues/503 Fixes #503
2012-03-19windowsChris McDonough