summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pyramid/config/routes.py5
-rw-r--r--src/pyramid/config/views.py15
2 files changed, 8 insertions, 12 deletions
diff --git a/src/pyramid/config/routes.py b/src/pyramid/config/routes.py
index cc3a87b2e..a508f69a4 100644
--- a/src/pyramid/config/routes.py
+++ b/src/pyramid/config/routes.py
@@ -306,8 +306,7 @@ class RoutesConfiguratorMixin(object):
\*\*predicates
- Pass extra keyword parameters to use custom or third-party predicates
- registered via
+ Pass extra keyword parameters to use custom predicates registered via
:meth:`pyramid.config.Configurator.add_route_predicate`. More than
one custom predicate can be used at the same time. See
:ref:`view_and_route_predicates` for more information about
@@ -323,7 +322,7 @@ class RoutesConfiguratorMixin(object):
'Configurator.add_route is deprecated as of Pyramid 1.5. '
'Use "config.add_route_predicate" and use the registered '
'route predicate as a predicate argument to add_route '
- 'instead. See "Adding A Third Party View, Route, or '
+ 'instead. See "Adding A Custom View, Route, or '
'Subscriber Predicate" in the "Hooks" chapter of the '
'documentation for more information.'
),
diff --git a/src/pyramid/config/views.py b/src/pyramid/config/views.py
index 20f20b5e8..bbc4fc5bc 100644
--- a/src/pyramid/config/views.py
+++ b/src/pyramid/config/views.py
@@ -729,22 +729,19 @@ class ViewsConfiguratorMixin(object):
.. deprecated:: 1.5
This value should be a sequence of references to custom
- predicate callables. Use custom predicates when no set of
- predefined predicates do what you need. Custom predicates
- can be combined with predefined predicates as necessary.
- Each custom predicate callable should accept two arguments:
+ predicate callables. Each custom predicate callable
+ should accept two arguments:
``context`` and ``request`` and should return either
``True`` or ``False`` after doing arbitrary evaluation of
- the context and/or the request. The ``predicates`` argument
- to this method and the ability to register third-party view
- predicates via
+ the context and/or the request. The ability to register
+ custom view predicates via
:meth:`pyramid.config.Configurator.add_view_predicate`
obsoletes this argument, but it is kept around for backwards
compatibility.
\*\*view_options
- Pass extra keyword parameters to use custom or third-party predicates
+ Pass extra keyword parameters to use custom predicates
or set a value for a view deriver. See
:meth:`pyramid.config.Configurator.add_view_predicate` and
:meth:`pyramid.config.Configurator.add_view_deriver`. See
@@ -771,7 +768,7 @@ class ViewsConfiguratorMixin(object):
'Configurator.add_view is deprecated as of Pyramid 1.5. '
'Use "config.add_view_predicate" and use the registered '
'view predicate as a predicate argument to add_view '
- 'instead. See "Adding A Third Party View, Route, or '
+ 'instead. See "Adding A Custom View, Route, or '
'Subscriber Predicate" in the "Hooks" chapter of the '
'documentation for more information.'
),