summaryrefslogtreecommitdiff
path: root/docs/narr
AgeCommit message (Collapse)Author
2013-01-11Merge pull request #784 from tshepang/shortenChris McDonough
take advantage of the -c option of Python
2013-01-11Merge pull request #781 from tshepang/typos2Chris McDonough
typos
2013-01-11Merge pull request #773 from reedobrien/masterChris McDonough
tiny import typo in viewconfig
2013-01-09take advantage of the -c option of PythonTshepang Lekhonkhobe
2013-01-08typosTshepang Lekhonkhobe
2013-01-06fix import typo in docsReed O'Brien
2013-01-04typosTshepang Lekhonkhobe
2013-01-01Merge pull request #760 from tshepang/typosChris McDonough
lots of typos
2013-01-01reflow, typoChris McDonough
2013-01-01Merge branch 'pyvenv' of git://github.com/tshepang/pyramid into tshepang-pyvenvChris McDonough
2013-01-01fix rationale and typoChris McDonough
2013-01-02eliminate other repeated wordsTshepang Lekhonkhobe
2013-01-01eliminate repeated "the" wordsTshepang Lekhonkhobe
2013-01-01improve wording regarding pyvenvTshepang Lekhonkhobe
2013-01-01typosTshepang Lekhonkhobe
2013-01-01fix #746: explain why a dev package is installedTshepang Lekhonkhobe
2013-01-01typoTshepang Lekhonkhobe
2012-12-29typoTshepang Lekhonkhobe
2012-12-22Typo pakage => packageReinout van Rees
2012-11-29Sync MyProject files with the starter scaffoldPatricio Paez
- Line numbers are mentioned only in the Creating a Pyramid Project chapter; those that are affected were updated.
2012-11-22typosChris McDonough
2012-11-22more appeasementChris McDonough
2012-11-22appeasementChris McDonough
2012-11-21document new introspectable attrsChris McDonough
2012-11-12Modified the hooks documentation to currently describe how to access the ↵Robert Jackiewicz
context in a forbidden view.
2012-11-04merged SHA512AuthTktAuthenticationPolicy into AuthTktAuthenticationPolicyMichael Merickel
AuthTktAuthenticationPolicy now accepts a hashalg parameter and is no longer deprecated. Docs recommend overriding hashalg and using 'sha512'.
2012-11-04fix docs, upgrade tutorials, add change note, deprecate using ↵Chris McDonough
zope.deprecation instead of a warning, make hashalg arg a kwarg in certain cases in case someone (maybe me) is using nonapi function imports from authentication
2012-11-02explain csrf token stealing potentialityChris McDonough
2012-11-02typoCarlos de la Guardia
2012-10-28- Added an ``effective_principals`` route and view predicate.Chris McDonough
2012-10-26- New ``physical_path`` view predicate. If specified, this value should be aChris McDonough
string or a tuple representing the physical traversal path of the context found via traversal for this predicate to match as true. For example: ``physical_path='/'`` or ``physical_path='/a/b/c'`` or ``physical_path=('', 'a', 'b', 'c')``. This is not a path prefix match or a regex, it's a whole-path match. It's useful when you want to always potentially show a view when some object is traversed to, but you can't be sure about what kind of object it will be, so you can't use the ``context`` predicate. The individual path elements inbetween slash characters or in tuple elements should be the Unicode representation of the name of the resource and should not be encoded in any way.
2012-10-13add docs and changelog noteChris McDonough
2012-09-28Remove duplicate wordCarlos de la Guardia
2012-09-19A ``check_csrf`` view predicate was added. For example, you can now doChris McDonough
``config.add_view(someview, check_csrf=True)``. When the predicate is checked, if the ``csrf_token`` value in ``request.params`` matches the csrf token in the request's session, the view will be permitted to execute. Otherwise, it will not be permitted to execute.
2012-09-17resolve contributors.txt merge conflictChris McDonough
2012-09-16make use_tweens=False the defaultChris McDonough
2012-09-16describe how to restrict access to 127.0.0.1, closes #489Chris McDonough
2012-09-16update docs to recommend 2.7, add distribute-related instructions for python ↵Chris McDonough
3, add windows instructions for python 3, closes #653
2012-09-16explain how this works with the exception viewChris McDonough
2012-09-16make use_tweens=True the default, add some more testsChris McDonough
2012-09-16rename subrequest to invoke_subrequestChris McDonough
2012-09-16wordingChris McDonough
2012-09-16garden todo, add docs about exception handlingChris McDonough
2012-09-16explainChris McDonough
2012-09-16explainChris McDonough
2012-09-16moarChris McDonough
2012-09-16docs and testChris McDonough
2012-09-15add a whatsnew-1.4 documentChris McDonough
2012-09-15merge jinty's testConfig codeChris McDonough
2012-09-15Merge branch 'master' of github.com:Pylons/pyramidChris McDonough