diff -r 2ee0ef069fa7 -r 2a3c1b787688 doc/book/en/tutorials/base/customizing-the-application.rst --- a/doc/book/en/tutorials/base/customizing-the-application.rst Thu Feb 02 14:33:30 2012 +0100 +++ b/doc/book/en/tutorials/base/customizing-the-application.rst Mon Jan 23 13:25:02 2012 +0100 @@ -199,8 +199,8 @@ particular context. When looking for a particular view (e.g. given an identifier), |cubicweb| computes for each available view with that identifier a score which is returned by the selector. Then the view with the highest - score is used. The standard library of selectors is in - :mod:`cubicweb.selector`. + score is used. The standard library of predicates is in + :mod:`cubicweb.predicates`. A view has a set of methods inherited from the :class:`cubicweb.view.View` class, though you usually don't derive directly from this class but from one of its more @@ -310,7 +310,7 @@ .. sourcecode:: python - from cubicweb.selectors import is_instance + from cubicweb.predicates import is_instance from cubicweb.web.views import primary class CommunityPrimaryView(primary.PrimaryView):