summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-10-26 13:38:21 +0000
committerChris McDonough <chrism@agendaless.com>2009-10-26 13:38:21 +0000
commit0a0ffe0b01e81e2fd55e92a818187d3b3b294605 (patch)
tree2a5b77b435e343847ed24644c150599b69296916 /docs
parent0d13f6596c2cf38a611183e01a7f73173d5d6faa (diff)
downloadpyramid-0a0ffe0b01e81e2fd55e92a818187d3b3b294605.tar.gz
pyramid-0a0ffe0b01e81e2fd55e92a818187d3b3b294605.tar.bz2
pyramid-0a0ffe0b01e81e2fd55e92a818187d3b3b294605.zip
Revert 6873, as it introduces an unnecessary providedBy for each request in the 99% case, and its behavior can be emulated by returning a root object that implements some interface and registering a traverser for that interface.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/hooks.rst3
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index 6babeace0..d2020af0d 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -278,9 +278,6 @@ when the application :term:`root factory` returned an instance of the
``myapp.models.MyRoot`` object. Otherwise it would use the default
:mod:`repoze.bfg` traverser to do traversal.
-Note that the root object may itself implement ``ITraverser`` in which
-case adaptation is skipped.
-
Example implementations of alternate traversers can be found "in the
wild" within `repoze.bfg.traversalwrapper
<http://pypi.python.org/pypi/repoze.bfg.traversalwrapper>`_ and