summaryrefslogtreecommitdiff
path: root/docs/narr
AgeCommit message (Collapse)Author
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
2012-09-15point at cookbookChris McDonough
2012-09-13Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-13wordingChris McDonough
2012-09-13docs renderingChris McDonough
2012-09-13add upgrading chapter, make docs render againChris McDonough
2012-09-09rename set_request_method to add_request_method. closes #683Chris McDonough
2012-08-30Fixed broken link in docs/narr/testing.rstRonan Amicel
Fixed link to "Dive into Python" (previous mirror is down).
2012-08-29close parenChris McDonough
2012-08-29add newness markersChris McDonough
2012-08-29wordingChris McDonough
2012-08-29add docs about chameleon zpt macro featureChris McDonough
2012-08-25Subscriber predicates:Chris McDonough
- Add ``add_subscriber_predicate`` method to Configurator. - Allow ``add_subscriber`` and ``subscriber`` venusian decorator to accept ``**predicates`` arguments. - Document subscriber predicate feature. - Share more code between view, route, and subscriber related method wrt predicates.
2012-08-23exposed the serve_forever line to the helloworld narrativeMichael Merickel
2012-08-23Merge branch 'master' of https://github.com/virhilo/pyramid into pull.650Michael Merickel
2012-08-23Fixed typo in docs/narr/views.rstRonan Amicel
2012-08-16readd set_request_property to docs (just so when people run across it in ↵Chris McDonough
in-the-wild code they're not totally confused); we'll remove it later
2012-08-16docs-deprecated set_request_propertyMichael Merickel
2012-08-14Typo pwteens -> ptweensKees Hink
2012-08-11get heading levels rightChris McDonough
2012-08-06Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-08-06add as-of-version notesChris McDonough
2012-08-06gardenMichael Merickel
2012-08-06Merge branch 'feature.metaviewpredicates'Chris McDonough
2012-08-06add docs for third-party view predicatesChris McDonough
2012-08-05fixed line numbers in firstappŁukasz Fidosz
2012-08-03fixed indentation in narr/helloworld.pyŁukasz Fidosz
2012-08-03Adding helpful link to installing chapter from first appWayne Witzel III
2012-07-29prettify CSS stored in docs tutorialsDavid Gay
2012-06-19point at pyramid_beaker docs rather than its github pageChris McDonough
2012-06-19fixed typosBlaise Laflamme