web/component.py
branchtls-sprint
changeset 747 af9c15653ea9
parent 743 62ff117dc99c
parent 742 99115e029dca
child 799 ad129d374ee2
--- a/web/component.py	Wed Feb 18 01:24:12 2009 +0100
+++ b/web/component.py	Wed Feb 18 01:25:51 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'