summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki
AgeCommit message (Collapse)Author
2016-01-30fix heading under/overlines for rst syntaxSteve Piercy
(cherry picked from commit 60b74ee)
2016-01-20Update docs to reflect dropping Python 3.2 supportSteve Piercy
2015-05-27clean up and make consistent across wikisSteve Piercy
2015-05-27- clean up and make consistent across wiki tutorialsSteve Piercy
- update templates and static assets for new design
2015-05-27- clean up and make consistent across both wikis authorization.rstSteve Piercy
- update templates and static assets to new theme
2015-05-26- clean up and make defininingviews consistent between two wiki tutorialsSteve Piercy
- sort imports to be consistent with scaffold setup.py - update templates, static assets
2015-05-25update template and static assets to currentSteve Piercy
2015-05-25update static assets, mytemplate.pt, capsSteve Piercy
2015-05-25wikis consistency, grammar, wrappingSteve Piercy
2015-05-25grammar, caps, minor tweaksSteve Piercy
2015-05-25cherry pick from 1.5-branchSteve Piercy
2015-05-25mention ZODB; punctuationSteve Piercy
2015-03-13Update code exampleSteve Piercy
Modify `lines` to include closing parens in source and update corresponding `emphasize-lines`. Closes #1606.
2014-08-12Docs: Make "userid" link to the glossary term.Karl O. Pinc
2014-04-08Drop setup.cfg from scaffoldsWichert Akkerman
Since setup.cfg is no longer needed for Babel, and no scaffold or documentation references nose there is no need to keep them.
2014-04-08Remove Babel from all setup.cfg filesWichert Akkerman
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-09undeprecate remember/forget functions and remove ↵Chris McDonough
remember_userid/forget_userid methods from request
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-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-14make these tests pass on python 3.2+Chris McDonough
2013-09-06fix some more broken referencesMichael Merickel
2013-09-06update the code in the wiki and wiki2 tutorials to use pyramid_chameleonMichael Merickel
2013-08-03"Web Application Development Framework" -> "Web Framework". Yay.Paul Everitt
2013-04-23replace deprecated methodTshepang Lekhonkhobe
2013-04-02remove copyright bits from the tutorial examplesTshepang Lekhonkhobe
We don't want to have to keep remembering these if there's a change, and apparently it's also overkill, according to https://github.com/Pylons/pyramid/pull/953#issuecomment-15654314.
2013-04-01Fix reST markupCatalin Iacob
2013-03-13consistency: use $VENV whenever virtualenv binaries are usedTshepang Lekhonkhobe
2013-03-12Merge pull request #893 from stevepiercy/masterMichael Merickel
traversal wiki tutorial docs updates
2013-03-07Grammar fixes.Steve Piercy
Align code in docs with that in the src directory.
2013-03-06Grammar fixesSteve Piercy
2013-03-05update some links and fix othersTshepang Lekhonkhobe
2013-03-04fix #311Tshepang Lekhonkhobe
2013-02-22paster use is outdatedTshepang Lekhonkhobe
2013-02-09Merge pull request #818 from stevepiercy/masterChris McDonough
Add source code snippets to supply context for the narrative.
2013-01-24Add source code snippets to supply context for the narrative.Steve Piercy
2013-01-22Merge pull request #812 from stevepiercy/mastergoodwillcoding
etc. is an abbreviation thank you
2013-01-22More grammar clean up.Steve Piercy
2013-01-22More grammar clean up.Steve Piercy
2013-01-22typoTshepang Lekhonkhobe
2013-01-21Grammar: either "e.g.", or "etc.", but not both in the same phrase.Steve Piercy
2013-01-21minor grammar, spellingSteve Piercy
2013-01-21etc. is an abbreviationSteve Piercy
2013-01-20point to the sources of the wiki tutorials in just one location; fix #763Tshepang Lekhonkhobe
* This avoids having to update the link multiple times. * Also, mention their location, in case user has Pyramid checkout.
2013-01-02Reduce duplicated installation instructions from the tutorialsTshepang Lekhonkhobe
* This also removes the mention of running 'source bin/activate' (see #759).
2013-01-02eliminate other repeated wordsTshepang Lekhonkhobe
2013-01-01eliminate repeated "the" wordsTshepang Lekhonkhobe
2013-01-01"usernames" is a more correct termTshepang Lekhonkhobe
2012-12-13Improvements to the ZODB tutorial Tests chapterPatricio Paez
- Standardize with the SQL tutorial