diff -r 39721e56b56d -r 99115e029dca web/component.py --- a/web/component.py Wed Feb 18 00:48:24 2009 +0100 +++ b/web/component.py Wed Feb 18 01:21:25 2009 +0100 @@ -31,7 +31,7 @@ __registry__ = 'contentnavigation' __registerer__ = accepts_registerer - __selectors__ = (one_line_rset, primary_view, match_context_prop,) + __select__ = one_line_rset() & primary_view() & match_context_prop() registered = accepts_compat(has_relation_compat(condition_compat(View.registered))) property_defs = { @@ -60,7 +60,7 @@ class NavigationComponent(Component): """abstract base class for navigation components""" id = 'navigation' - __selectors__ = (paginated_rset,) + __select__ = paginated_rset() page_size_property = 'navigation.page-size' start_param = '__start'