summaryrefslogtreecommitdiff
path: root/docs/tutorials
AgeCommit message (Collapse)Author
2015-11-11wiki2/src/basiclayout/Steve Piercy
- update ini files using new scaffold
2015-11-05literalinclude line number was off for Base objectNaoko Reeves
2015-10-06Include the right line number from the .py fileBert JW Regeer
This was including a blank line. This mistake was caught when attempting to build a PDF file using latexpdf due to LaTeX not allowing certain sections to be blank.
2015-10-01wiki2 documentation precisely matches the scaffolding outputnharringtonwasatch
2015-06-11Update authorization.rstorangieboot
Removed extra colons
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-05-25grammarSteve Piercy
2015-05-25update templates, line numbers, file referencesSteve Piercy
2015-05-25use correct column typeSteve Piercy
2015-05-25update templates and static assets for each stepSteve Piercy
2015-05-24update static assets for wiki tutorialSteve Piercy
2015-05-24grammar, punctuation, line number fixesSteve Piercy
2015-05-24use current theme derived from new alchemy scaffoldSteve Piercy
2015-05-24- make templates html5 compliantSteve Piercy
- punctuation, grammar, spelling - fix linenos references - update outputs
2015-04-14fixed documentation; wrong line in docsAntti Haapala
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
2014-03-21- correct bad .rst syntaxSteve Piercy
2014-03-17Corrected inline markup to use * for italicsthapar
2014-03-17Added note to place login/logout route definitions before `/{pagename}` routethapar
Resolves https://github.com/Pylons/pyramid/issues/1274
2013-11-18Merge branch 'master' into 1.5-branchChris McDonough
2013-11-18Merge branch '1.5-branch' of github.com:Pylons/pyramid into 1.5-branchChris McDonough
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-30fix failing test (unrelated to security stuff)Chris 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-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-16Add HTML escaping to views.pyJeff Hemphill
At least it's less obviously dangerous this way.
2013-10-14make these tests pass on python 3.2+Chris McDonough
2013-10-08fix stupid missing named arguments, whyyyMichael Merickel
2013-10-07fix some broken positional args to sqlalchemy modelsMichael Merickel
2013-09-08remove bfg conversion chapterChris McDonough
2013-09-08fix merge conflictChris McDonough
2013-09-06Update line numbers as appropriateBert JW Regeer
Removing __init__ moved some code around, update the line numbers as appropriate so that the right sections of code get highlighted.
2013-09-06Add small note showing example usage of MyModelBert JW Regeer
2013-09-06changed the explanation of the (now missing) __init__ methodsergey.volobuev
2013-09-06removed __init__ methods from SQLAlchemy models in the documentation because ↵sergey.volobuev
the latter generates a default constructor