summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
diff options
context:
space:
mode:
authorRob Miller <rob@mochimedia.com>2010-12-29 14:12:30 -0800
committerRob Miller <rob@mochimedia.com>2010-12-29 14:12:30 -0800
commit9c1d34a3de11286c98dce52592ef05a3c05046a5 (patch)
tree3b9d60fabfa876bdaba9debd477f85cd9cf926bf /docs/narr/urldispatch.rst
parent88231cc1b16f1f5a0983dba1dab9b401bbde0c00 (diff)
parent8739f576ed84bb48cec9c2d4b60e92878a273b1f (diff)
downloadpyramid-9c1d34a3de11286c98dce52592ef05a3c05046a5.tar.gz
pyramid-9c1d34a3de11286c98dce52592ef05a3c05046a5.tar.bz2
pyramid-9c1d34a3de11286c98dce52592ef05a3c05046a5.zip
Merge remote branch 'refs/remotes/upstream/viewderiver' into ra_view_decoration
Conflicts: CHANGES.txt pyramid/config.py
Diffstat (limited to 'docs/narr/urldispatch.rst')
-rw-r--r--docs/narr/urldispatch.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 4c601340f..0d28a0e96 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -533,12 +533,12 @@ neither predicates nor view configuration information.
callables. Use custom predicates when no set of predefined predicates does
what you need. Custom predicates can be combined with predefined
predicates as necessary. Each custom predicate callable should accept two
- arguments: ``context`` and ``request`` and should return either ``True`` or
+ arguments: ``info`` and ``request`` and should return either ``True`` or
``False`` after doing arbitrary evaluation of the context resource and/or
the request. If all callables return ``True``, the associated route will
be considered viable for a given request. If any custom predicate returns
- ``False``, route matching continues. Note that the value ``context`` will
- always be ``None`` when passed to a custom route predicate.
+ ``False``, route matching continues. See :ref:`custom_route_predicates`
+ for more information.
**View-Related Arguments**