summaryrefslogtreecommitdiff
path: root/docs/narr
AgeCommit message (Collapse)Author
2017-10-18csrf documentation changeBen Fagin
2017-08-14Fix typo in Mac OS X Python install instructinosPaul Cutler
Replace "verion" with correct spelling: version (cherry picked from commit 0bc8888)
2017-07-24Fix typoKamil Dębowski
2017-07-12Merge pull request #3119 from stevepiercy/docs-context-managerMichael Merickel
Update docs to use a Configurator context manager
2017-07-08fix the other link to pastedeployMichael Merickel
2017-07-03Update example apps to use config context managerSteve Piercy
2017-07-03Use lineno-match instead of linenosSteve Piercy
2017-07-03Update example apps to use config context managerSteve Piercy
2017-07-03Link context manager term to glossarySteve Piercy
2017-06-27Update all external links per `make linkcheck`Steve Piercy
- Most are changing http to https, or readthedocs.org to readthedocs.io, and some for Python packaging reorganizing some docs into tutorials, as well as miscellaneous changes.
2017-06-27prep 1.10.dev0Michael Merickel
2017-06-26Fix link to Venusian docsSteve Piercy
2017-06-26change http://docs.pylonsproject.org to httpsSteve Piercy
- use correct URL for code style - use correct Pyramid version for zodb wiki src file template
2017-06-15remove trailing slashSteve Piercy
2017-06-15Use HTTPS for pylonsproject.orgSteve Piercy
2017-06-10update src files and synch emphasize-lines for myprojectSteve Piercy
2017-06-07explain why we prefer to avoid activateMichael Merickel
fixes #3064
2017-06-06Merge pull request #2634 from cewing/issue.2614Steve Piercy
Improve "introduction" page, add "Advanced Features" page
2017-06-06restore the r. it's importantcewing
2017-06-05fix a few more comments, and reflow introduction document to one line per ↵cewing
paragraph
2017-06-05fix more comments and refold lines, one per paragraph as specified in ↵cewing
stylesheet.
2017-06-03finish all app references for Pyramid and refold line lengthscewing
2017-06-03more fixes for CRcewing
2017-06-03use str in deference to Py3 style over Py2cewing
2017-06-02mid-release cycle will be the death of meSteve Piercy
2017-06-02append ` --checkout master` to cookie cutter commandSteve Piercy
2017-06-01use shortcut for github URL; update RELEASING.txtSteve Piercy
- refs: #3042
2017-05-25fix more style issues per CRcewing
2017-05-25fix code indentation and unify style for all code blocks, per CRcewing
2017-05-23finish polishing the advanced configuration doc per code reviewcewing
2017-05-23fixes per code review, Thanks @stevepiercy.cewing
2017-05-22Updating wording in the advanced features doc to make it more accessiblecewing
2017-05-22Fix #2548, add SRI has for script tagsFang-Pen Lin
2017-05-22simplify the section comparing pyramid with other web frameworkscewing
also remove the sidebar about MVC, in favor of a simpler statement of belief in the MVC paragraph.
2017-05-22move more esoteric framework features into a separate file to remove ↵cewing
complexity from the intro doc.
2017-05-22Merge branch 'master' into issue.2614cewing
2017-05-22updates to narrative docs introduction, fixing for clarity and concisioncewing
2017-05-12Merge branch 'master' into change-to-localhostSteve Piercy
2017-05-12update narrative docs to align with source codeSteve Piercy
- per https://github.com/Pylons/pyramid/pull/3000#issuecomment-294565854
2017-04-30Merge pull request #2985 from mmerickel/plasterMichael Merickel
migrate pyramid to use plaster
2017-04-30standardize "non-standard"Steve Piercy
2017-04-30Merge branch 'master' into pr/2854Michael Merickel
2017-04-29final cleanup of csrf decoupling in #2854Michael Merickel
- Renamed `SessionCSRFStoragePolicy` to `LegacySessionCSRFStoragePolicy` for the version that uses the legacy `ISession.get_csrf_token` and `ISession.new_csrf_token` apis and set that as the default. - Added new `SessionCSRFStoragePolicy` that stores data in the session similar to how the `SessionAuthenticationPolicy` works. - `CookieCSRFStoragePolicy` did not properly return the newly generated token from `get_csrf_token` after calling `new_csrf_token`. It needed to cache the new value since the response callback does not affect the current request. - `CookieCSRFStoragePolicy` was not forwarding the `domain` value to the `CookieProfile` causing that setting to be ignored. - Removed `check_csrf_token` from the `ICSRFStoragePolicy` interface to simplify implementations of storage policies. - Added an introspectable item for the configured storage policy so that it appears on the debugtoolbar. - Added a change note on `ISession` that it no longer required the csrf methods. - Leave deprecated shims in ``pyramid.session`` for ``check_csrf_origin`` and ``check_csrf_token``.
2017-04-27Fix underlined title.Rémy HUBSCHER
2017-04-26Move CSRF storage policy registration out of PHASE_1 config and simplify ↵Matthew Wilkes
tests given previous improvements to CSRF.
2017-04-26Apply drafting changes to documentation.Matthew Wilkes
2017-04-23update user prompt for cookiecutter repo_nameSteve Piercy
- refs: https://github.com/Pylons/pyramid-cookiecutter-starter/pull/27#issuecomment-296507821
2017-04-17fix rst syntax for index entriesSteve Piercy
2017-04-16Fix #2927 - Change to listen = localhost:6543.Aleph Melo
2017-04-12Use the webob CookieProfile in the Cookie implementation, rename some ↵Matthew Wilkes
implemenations based on feedback, split CSRF implementation and option configuration and make the csrf token function exposed as a system default rather than a renderer event.